import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        vertical?: boolean | undefined;
        horizontal?: boolean | undefined;
        stack?: boolean | undefined;
        template?: string | undefined;
    };
    events: {
        click: MouseEvent;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type StackProps = typeof __propDef.props;
export type StackEvents = typeof __propDef.events;
export type StackSlots = typeof __propDef.slots;
export default class Stack extends SvelteComponentTyped<StackProps, StackEvents, StackSlots> {
}
export {};
