import React from "react"; import { CSSObject } from "create-emotion"; import { TColor, IComponent } from "../types"; interface SwitchProps extends IComponent { label: string; name: string; color: TColor; onChange: (state: boolean) => void; isGhost: boolean; isDisabled: boolean; defaultChecked: boolean; labelStyle: React.CSSProperties; } declare const Switch: React.StatelessComponent export default Switch