import React from "react"; export declare type SwitchProps = { title: string; value?: boolean; defaultValue?: boolean; }; declare const Switch: React.FC; export default Switch;