import React from 'react'; export type RadionButtonSize = 'sm' | 'md' | 'lg'; export type RadioButtonVariant = 'accent' | 'primary' | 'secondary' | 'static-black' | 'static-white'; export interface RadioButtonProps extends Omit, 'size' | 'onChange'> { label: string; size?: RadionButtonSize; variant?: RadioButtonVariant; disabled?: boolean; onChange?: (value: string) => void; } export declare const RadioButton: React.FC;