Files

8 lines
169 B
TypeScript

/// <reference types="react" />
interface Props {
id: string;
value: string;
}
export declare function HiddenText({ id, value }: Props): JSX.Element;
export {};