denwa-react-shared
Version:
14 lines (13 loc) • 444 B
TypeScript
import { InputProps } from 'antd';
import { FC } from 'react';
import { TextAreaProps } from 'antd/es/input';
interface BaseInputProps extends InputProps {
emptyText: string;
}
export declare const BaseInput: FC<BaseInputProps>;
export declare const BasePasswordInput: FC<BaseInputProps>;
interface BaseTextAreaInput extends TextAreaProps {
emptyText: string;
}
export declare const BaseTextAreaInput: FC<BaseTextAreaInput>;
export {};