export declare type TComponentSwitchProps = { isDisabled?: boolean; propPath: readonly string[]; isChecked: boolean; onChange: (propPath: readonly string[], propValue: any) => void; }; export declare const ComponentSwitch: import("refun").TComponent;