import type { ComponentChildren } from 'preact'; export type ButtonGroupProps = { children: ComponentChildren; orientation: 'vertical' | 'horizontal'; }; /** Renders a group of buttons with Widget CSS */ export declare const ButtonGroup: (props: ButtonGroupProps) => import("preact").JSX.Element; //# sourceMappingURL=button-group.d.ts.map