import { NormalSizes, NormalTypes } from '../utils/prop-types'; import { HuiThemesPalette } from '../themes'; export type InputSize = { heightRatio: string; fontSize: string; }; export declare const getSizes: (size?: NormalSizes) => InputSize; export type InputColor = { color: string; borderColor: string; hoverBorder: string; }; export declare const getColors: (palette: HuiThemesPalette, status?: NormalTypes) => InputColor;