import { SyntheticEvent, CSSProperties } from 'react'; type GroupButtonData = { label?: string; active?: boolean; color?: string; onClick?: (a: SyntheticEvent) => unknown; }; export type GroupButtonProps = { data?: GroupButtonData[]; gap?: string; orientation?: 'horizontal' | 'vertical'; padding?: string; disabled?: boolean; style?: CSSProperties; }; export type GroupButtonStyledProps = GroupButtonData & GroupButtonProps; export {}; //# sourceMappingURL=type.d.ts.map