import { cva } from 'class-variance-authority';

type CvaConfig = {
    orientation: {
        horizontal: string;
        vertical: string;
    };
};
declare const radioGroup: ReturnType<typeof cva<CvaConfig>>;

export { CvaConfig, radioGroup };
