type EnabledState = 'enabled' | 'disabled' | 'readonly';
type ValidationState = 'valid' | 'invalid';
export type RadioState = EnabledState | ValidationState;
export interface RadioIndicatorProps {
    isSelected: boolean;
    state: RadioState;
    theme: string;
    className?: string;
}
export declare const RadioIndicator: ({ isSelected, state, theme, className, }: RadioIndicatorProps) => import("react/jsx-runtime").JSX.Element;
export {};
