import React from "react"; type Props = React.ComponentPropsWithoutRef<"fieldset"> & { children: React.ReactNode; title?: string; className?: string; /** * Over how many columns the radio cards should be distributed. * * @default 2 */ columns?: 1 | 2 | 3 | 4; /** * Any additional information to show underneath the radio group. */ helperText?: React.ReactNode; /** * An error message that should be shown when there's something wrong * with the user's input. */ errorText?: React.ReactNode; }; /** * This component is used to group radio buttons together with a title, and provide * a semantic helper and error text to the group. It requires children to function, * in practice these are always `LabeledRadioCard` components. */ export declare const LabeledRadioCardGroup: React.FC; export {};