import React from "react"; import type { ControlledFormValue } from "../../internal/type"; export interface Props extends ControlledFormValue { trueText?: string; falseText?: string; disabled?: boolean; style?: React.CSSProperties; loading?: boolean; } export declare const BoolSwitch: (({ trueText, falseText, disabled, loading, style, value, onChange }: Props) => React.JSX.Element) & { YesNo: (props: Omit) => React.JSX.Element; OnOff: (props: Omit) => React.JSX.Element; ActiveOrNot: (props: Omit) => React.JSX.Element; };