import { InputSize, InputStatus, InputStepperSize } from './types'; export declare const input_status_color_css: Record; export declare const input_wrapper_base_css: import("@emotion/react").SerializedStyles; export declare const input_base_css: import("@emotion/react").SerializedStyles; export declare const input_status_icon_css: import("@emotion/react").SerializedStyles; export declare const getInputStatusIconSize: (size: InputSize) => number; export declare const input_default_style: { backgroundColor: string; border: string; color: string; }; export declare const input_error_style: { border: string; '&:focus, &:hover, &:focus-within': { border: string; }; }; export declare const input_focus_style: { outline: string; zIndex: number; '&:focus': { outline: string; }; }; export declare const input_disabled_style: { backgroundColor: string; border: string; '-webkit-text-fill-color': string; color: string; opacity: number; '&:focus, &:hover, &:focus-within': { border: string; }; }; export declare const input_entered_disabled_style: { color: string; '-webkit-text-fill-color': string; }; export declare const getInputPaddingBySize: (size: InputSize) => string; export declare const getInputSpacingBySize: (size: InputSize) => number; export type CommonSize = 'xsmall' | 'small' | 'medium' | 'large'; export declare const HEIGHT_BY_SIZE: Record; export declare const getInputHeightBySize: (size: CommonSize) => number; export declare const getInputSizeStyle: (size?: InputSize) => import("@emotion/react").SerializedStyles; export declare const getInputFontStyle: (size: InputSize) => import("@emotion/react").SerializedStyles; export declare const getInputSizeByInputStepperSize: (size: InputStepperSize) => InputSize; export declare const getInputStepperHeightBySize: (size: InputStepperSize) => number; export declare const getInputStepperButtonIconSize: (size: InputStepperSize) => number; export declare const getInputStepperButtonSizeStyle: (size?: InputStepperSize) => import("@emotion/react").SerializedStyles;