import { SvelteComponentTyped } from "svelte";
import type { SelectedDate } from '../utils/date';
declare const __propDef: {
    props: {
        selected?: SelectedDate | undefined;
        minDate?: Date | undefined;
        maxDate?: Date | undefined;
        format?: string | undefined;
        disabledYears?: any;
    };
    events: {
        dateChange: CustomEvent<any>;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type YearListProps = typeof __propDef.props;
export type YearListEvents = typeof __propDef.events;
export type YearListSlots = typeof __propDef.slots;
export default class YearList extends SvelteComponentTyped<YearListProps, YearListEvents, YearListSlots> {
}
export {};
