import { FC, type PropsWithChildren } from "react";
export interface BlokButtonGroupProps {
    variant?: "normal" | "square" | "rounded";
    orientation?: "horizontal" | "vertical";
    fullWidth?: boolean;
    className?: string;
}
export declare const BlokButtonGroup: FC<PropsWithChildren<BlokButtonGroupProps>>;
