import { SvelteComponentTyped } from "svelte";
import { PeriodType, type DisabledDate, type SelectedDate } from '@layerstack/utils';
declare const __propDef: {
    props: {
        selected?: SelectedDate;
        periodType?: PeriodType;
        activeDate?: "from" | "to";
        /**
           * Dates to disable (not selectable)
           */ disabledDates?: DisabledDate | undefined;
    };
    events: {
        dateChange: CustomEvent<any>;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type DateSelectProps = typeof __propDef.props;
export type DateSelectEvents = typeof __propDef.events;
export type DateSelectSlots = typeof __propDef.slots;
export default class DateSelect extends SvelteComponentTyped<DateSelectProps, DateSelectEvents, DateSelectSlots> {
}
export {};
