UNPKG

@harvest-profit/npk

Version:
12 lines 363 B
import React, { ReactNode } from 'react'; import { BaseInputProps } from '../BaseInput'; interface ControlProps extends BaseInputProps { children?: ReactNode; value?: any; name?: string; [key: string]: any; } declare const Control: React.FC<ControlProps>; export default Control; export type { ControlProps }; //# sourceMappingURL=Control.d.ts.map