import { GdsElement } from '../../gds-element'; /** * @element gds-toggle-control-base * @status beta * @internal * * A specialized label component designed for selection-based form controls (radio buttons and checkboxes). * It provides a consistent structure for: * - The control element (radio/checkbox) * - Primary label text * - Optional supporting text * * Usage: * ```html * * * * ``` */ export declare class GdsToggleControlBase extends GdsElement { static styles: (import("lit").CSSResult | import("lit").CSSResult[])[]; /** * The main label text displayed next to the selection control */ label: string; /** * Additional descriptive text displayed below the main label */ supportingText: string; constructor(); render(): any; }