import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; group?: any; checked?: boolean; value?: any; disabled?: boolean; class?: string; inputElement?: HTMLInputElement; containerElement?: HTMLLabelElement; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type RadioButtonProps = typeof __propDef.props; export declare type RadioButtonEvents = typeof __propDef.events; export declare type RadioButtonSlots = typeof __propDef.slots; /** * Radio buttons, also called option buttons, let users select one option from a collection of two or more mutually exclusive, but related, options. The singular behavior of a RadioButtons group distinguishes it from check boxes, which support multi-selection and deselection, or clearing. [Docs](https://fluent-svelte.vercel.app/docs/components/radiobutton) * - Usage: * ```tsx * * * Chocolate * Vanilla * Strawberry * ``` */ export default class RadioButton extends SvelteComponentTyped { } export {};