import React from "react"; import type { XOR } from "ts-xor"; import type { BaseSwitchProps } from "./components/BaseSwitch"; interface WithLabelProps extends BaseSwitchProps { /** * Optional label to display in front of the switch */ readonly label: string; /** * Optional descriptive text to display under the switch */ readonly description?: string; } export type SwitchProps = XOR; export declare function Switch(props: SwitchProps): React.JSX.Element; export {};