UNPKG

222 BTypeScriptView Raw
1import { FC } from 'react';
2import { ControlProps, TextValue, TextConfig } from './types';
3export declare type TextProps = ControlProps<TextValue | undefined> & TextConfig;
4export declare const TextControl: FC<TextProps>;