import type { ButtonToolbarGroup, ButtonToolbarItem } from "@liwe3/webcomponents"; interface Props { orientation?: 'horizontal' | 'vertical'; groups?: ButtonToolbarGroup[]; onbuttonclick?: (detail: { id: string; action: string; originalEvent: Event; item: ButtonToolbarItem; }) => void; } declare const ButtonToolbar: import("svelte").Component; type ButtonToolbar = ReturnType; export default ButtonToolbar; //# sourceMappingURL=ButtonToolbar.svelte.d.ts.map