import { type EventEmitter } from '../../stencil-public-runtime'; export declare class CobaltToggle { /** * The label that accompany the toggle. 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 toggle is selected or not. * * It should be false if the toggle is `indeterminate`. */ selected?: boolean; /** * A boolean indicating the disable state of the Toggle. The `aria-disabled` attribute relies on this property. */ disabled?: boolean; /** * Emitted when the selected value has changed. */ cobaltToggleChange: EventEmitter; handleToggle: () => void; render(): any; }