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