import { type EventEmitter } from '../../stencil-public-runtime'; export declare class CobaltRadioButton { /** * The label that accompany the radio button. It is **required** for accessibility concerns. */ label: string; /** * Description will append below the label. */ description?: string; /** * A string indicating the position of the label or if it is hidden. */ format?: 'right' | 'left' | 'hidden'; /** * A Boolean indicating whether the radio is checked or unchecked. */ checked?: boolean; /** * A boolean indicating the disable state of the radio button. The `aria-disabled` attribute relies on this property. */ disabled?: boolean; /** * Emitted when the checked value has changed. */ cobaltRadioButtonChange: EventEmitter; handleCheck: () => void; render(): any; }