import { GeistUIThemesPalette } from "../themes/presets/index"; export declare type InputSize = { heightRatio: string; fontSize: string; }; export declare const getSizes: (size?: "small" | "mini" | "medium" | "large" | undefined) => InputSize; export declare type InputColor = { color: string; borderColor: string; hoverBorder: string; }; export declare const getColors: (palette: GeistUIThemesPalette, status?: "secondary" | "success" | "error" | "warning" | "default" | undefined) => InputColor;