import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        initial?: any;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {
            value: any;
            set: (newValue: any) => void;
        };
    };
};
export type StateProps = typeof __propDef.props;
export type StateEvents = typeof __propDef.events;
export type StateSlots = typeof __propDef.slots;
export default class State extends SvelteComponentTyped<StateProps, StateEvents, StateSlots> {
}
export {};
