export interface DateRangeFieldClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the input element. */ input: string; /** Class name applied to the component when disabled. */ disabled: string; /** Class name applied to the component when it has an error. */ error: string; } export type DateRangeFieldClassKey = keyof DateRangeFieldClasses; /** * Generates a utility class for the DateRangeField component * @param {string} slot - The class slot name * @returns {string} The generated class name */ export declare function getDateRangeFieldUtilityClass(slot: string): string; /** * Generated utility classes for the DateRangeField component */ declare const dateRangeFieldClasses: DateRangeFieldClasses; export default dateRangeFieldClasses;