import { SvelteComponentTyped } from "svelte";
export declare const groupKey: {};
declare const __propDef: {
    props: {
        [x: string]: any;
        value?: any;
        autoscroll?: boolean;
        contained?: boolean;
        underlined?: boolean;
        vertical?: boolean;
        circle?: boolean;
        classes?: {
            root?: string;
            options?: string;
            optionContainer?: string;
            option?: string;
            indicator?: string;
        };
    };
    events: {
        change: CustomEvent<any>;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
        panes: {};
    };
};
export type ToggleGroupProps = typeof __propDef.props;
export type ToggleGroupEvents = typeof __propDef.events;
export type ToggleGroupSlots = typeof __propDef.slots;
export default class ToggleGroup extends SvelteComponentTyped<ToggleGroupProps, ToggleGroupEvents, ToggleGroupSlots> {
}
export {};
