import { CalendarTheme } from '../Calendar';
import { InputTheme } from '../Input';
export interface DateInputTheme {
    /** Theme applied to the underlying input element. */
    input: InputTheme;
    /** Theme applied to the calendar popover. */
    calendar: CalendarTheme;
    /** Class names for the preset list and its options. */
    preset: {
        list: string;
        option: {
            base: string;
            active: string;
        };
    };
}
export declare const dateInputTheme: DateInputTheme;
