@harvest-profit/npk
Version:
NPK UI Design System
12 lines • 363 B
TypeScript
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