export interface InputClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the wrapper element. */ wrapper: string; /** Class name applied to the input element. */ input: string; /** Class name applied to the startDecorator element */ startDecorator: string; /** Class name applied to the endDecorator element */ endDecorator: string; /** Class name applied to the root element if the component is focused. */ focused: string; /** Class name applied to the root element if the input has value */ filled: string; /** Class name applied to the root element if `disabled={true}`. */ disabled: string; /** State class applied to the root element if `error={true}`. */ error: string; /** Class name applied to the root element if `fullWidth={true}`. */ fullWidth: string; /** Class name applied to the root element if `size="small"`. */ sizeSmall: string; /** Class name applied to the root element if `size="medium"`. */ sizeMedium: string; /** Class name applied to the root element if `size="large"`. */ sizeLarge: string; /** Class name applied to the error icon. */ errorStateIcon: string; } export type InputClassKey = keyof InputClasses; export declare function getInputUtilityClass(slot: string): string; declare const inputClasses: InputClasses; export default inputClasses;