import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        /** The list of dark themes to chose from, if not the list provided to `settings`. */ darkThemes?: string[];
        /** The list of light themes to chose from, if not the list provided to `settings`. */ lightThemes?: string[];
        /** Add keyboard shorts to quickly toggle color scheme and cycle themes */ keyboardShortcuts?: boolean;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type ThemeSelectProps = typeof __propDef.props;
export type ThemeSelectEvents = typeof __propDef.events;
export type ThemeSelectSlots = typeof __propDef.slots;
export default class ThemeSelect extends SvelteComponentTyped<ThemeSelectProps, ThemeSelectEvents, ThemeSelectSlots> {
}
export {};
