import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        absolute?: boolean | undefined;
        disabled?: boolean | undefined;
        label?: string | undefined;
        value?: string | undefined;
        onselect?: (Function | null) | undefined;
    };
    events: {
        input: CustomEvent<any>;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        label: {
            slot: string;
        };
    };
};
export type TimezonePickerProps = typeof __propDef.props;
export type TimezonePickerEvents = typeof __propDef.events;
export type TimezonePickerSlots = typeof __propDef.slots;
export default class TimezonePicker extends SvelteComponentTyped<TimezonePickerProps, TimezonePickerEvents, TimezonePickerSlots> {
}
export {};
