import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type InputParts = { input: 'hover' | 'focus' | 'active' | 'readOnly' | 'disabled'; placeholder: ''; }; declare type InputDOMProps = React.ComponentPropsWithRef<'input'>; declare type InputStyleConfigProp = { styleConfig?: StyleConfig; }; declare type InputSystemProps = BoxSystemProps; export declare type InputProps = InputDOMProps & InputStyleConfigProp & InputSystemProps; export declare const Input: React.ForwardRefExoticComponent & React.RefAttributes>; export {};