import React from "react"; import * as S from "../styled-components"; interface ISwitch extends S.IMainCssType { checked?: boolean; onChange?: (event: React.ChangeEvent) => void; labels: [string, string]; type?: "default" | "primary"; size?: "normal" | "small" | "large"; className?: string; color?: string; height?: string | number; width?: string | number; } export declare const LabelSwitch: React.FC; export {};