export interface DateFieldClasses { /** Styles applied to the root element */ root: string; /** Styles applied to the input element */ input: string; /** Styles applied to the clear button element */ clearButton: string; /** Styles applied to the error state */ error: string; /** Styles applied to the disabled state */ disabled: string; /** Styles applied to the clearable state */ clearable: string; /** Styles applied to the small size variant */ sizeSmall: string; /** Styles applied to the medium size variant */ sizeMedium: string; /** Styles applied to the large size variant */ sizeLarge: string; } export type DateFieldClassKey = keyof DateFieldClasses; export declare function getDateFieldUtilityClass(slot: string): string; declare const dateFieldClasses: DateFieldClasses; export default dateFieldClasses;