import * as React from "react"; import { StructureProps } from "./system/unions"; export declare type ToggleSwitchProps = StructureProps & { selected?: boolean; hasError?: boolean; disabled?: boolean; } & React.HTMLAttributes; export declare const ToggleSwitch: import("styled-components").StyledComponent<"div", any, React.PropsWithChildren, never>;