import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; variant?: "standard" | "accent" | "hyperlink"; href?: string; open?: boolean; disabled?: boolean; menuDisabled?: boolean; trapFocus?: boolean; hideChevron?: boolean; direction?: "down" | "up"; alignment?: "start" | "center" | "end"; offset?: number; acrylic?: boolean; closable?: boolean; closeOnSelect?: boolean; class?: string; element?: HTMLElement; containerElement?: HTMLElement; chevronElement?: HTMLElement; menuElement?: HTMLElement; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; flyout: {}; }; }; export declare type SplitButtonProps = typeof __propDef.props; export declare type SplitButtonEvents = typeof __propDef.events; export declare type SplitButtonSlots = typeof __propDef.slots; /** *