import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type SwitchSliderParts = { switch: 'hover' | 'focus' | 'active' | 'checked' | 'disabled'; thumb: ''; }; declare type SwitchSliderDOMProps = React.ComponentPropsWithRef<'input'>; declare type SwitchSliderStyleConfigProp = { styleConfig?: StyleConfig; }; declare type SwitchSliderSystemProps = BoxSystemProps; export declare type SwitchSliderProps = SwitchSliderDOMProps & SwitchSliderStyleConfigProp & SwitchSliderSystemProps; export declare const SwitchSlider: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const Wrapper: import("styled-components").StyledComponent<"div", any, import("../utils/systemProps").SystemProps, never>; export {};