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