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