import { ToggleSwitchSize, LabelPosition, AnimationType } from './types'; interface StyledToggleContainerProps { $labelPosition: LabelPosition; } interface StyledToggleSwitchProps { $isOn: boolean; $size: ToggleSwitchSize; $disabled: boolean; $onColor?: string; $offColor?: string; $animation: AnimationType; $animationDuration: number; $width: number; $height: number; } interface StyledToggleThumbProps { $isOn: boolean; $size: ToggleSwitchSize; $thumbColor?: string; $animation: AnimationType; $animationDuration: number; $thumbSize: number; $thumbOffset: number; } interface StyledLabelTextProps { $size: ToggleSwitchSize; $disabled: boolean; } export declare const StyledToggleContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, StyledToggleContainerProps>> & string; export declare const StyledToggleSwitch: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, StyledToggleSwitchProps>> & string; export declare const StyledToggleThumb: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, StyledToggleThumbProps>> & string; export declare const StyledLabelText: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLSpanElement>, StyledLabelTextProps>> & string; export {};