import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: Record<string, never>;
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type ThemeInitProps = typeof __propDef.props;
export type ThemeInitEvents = typeof __propDef.events;
export type ThemeInitSlots = typeof __propDef.slots;
export default class ThemeInit extends SvelteComponentTyped<ThemeInitProps, ThemeInitEvents, ThemeInitSlots> {
}
export {};
