import { Gemstone } from '@gpa-gemstone/application-typings';
interface IProps<T> extends Gemstone.TSX.Interfaces.IBaseFormProps<T> {
    /**
        * Position to display radion buttons in
        * @type {'vertical' | 'horizontal'}
        * @optional
    */
    Position?: ('vertical' | 'horizontal');
    /**
        * Options for the radion buttons
        * @type {{ Value: string | number; Label: string, Disabled?: boolean }[]}
    */
    Options: {
        Value: string | number;
        Label: string;
        Disabled?: boolean;
    }[];
}
export default function RadioButtons<T>(props: IProps<T>): JSX.Element;
export {};
