export type RadioOption = { value: number; label: string; }; export interface RadioButtonsProps { options?: RadioOption[]; header?: string; onError?: boolean; onChange?: (value: any) => void; value?: number; horizontal?: boolean; disabled?: boolean; } export declare const RadioButtons: ({ options, header, onError, onChange, value, horizontal, disabled }: RadioButtonsProps) => JSX.Element;