import React from "react"; import "./toggle.scss"; export declare type ToggleProps = JSX.IntrinsicElements["input"] & { /** Element label */ label?: string; /** to set if the toggle is inline with other element */ inline?: boolean; /** properties that related to div element */ wrapperProps?: JSX.IntrinsicElements["div"]; }; /** A Slide toggle allows the user to change between two states */ export declare const Toggle: React.FC;