import { EventEmitter } from '../../stencil-public-runtime';
export declare class CbpRadio {
    private formField;
    private initialChecked;
    host: HTMLElement;
    name: string;
    value: string;
    fieldId: string;
    checked: boolean;
    disabled: boolean;
    context: 'light-inverts' | 'light-always' | 'dark-inverts' | 'dark-always';
    sx: any;
    stateChanged: EventEmitter;
    handleChange(e: any): void;
    reset(): Promise<void>;
    watchDisabledHandler(newValue: boolean): void;
    componentWillLoad(): void;
    componentDidLoad(): void;
    render(): any;
}
