import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type SwitchContainedParts = { switch: 'hover' | 'focus' | 'active' | 'checked' | 'disabled'; thumb: ''; }; declare type SwitchContainedDOMProps = React.ComponentPropsWithRef<'input'>; declare type SwitchContainedStyleConfigProp = { styleConfig?: StyleConfig; }; declare type SwitchContainedSystemProps = BoxSystemProps; declare type SwitchContainedOwnProps = { gap?: number; }; export declare type SwitchContainedProps = SwitchContainedDOMProps & SwitchContainedStyleConfigProp & SwitchContainedSystemProps & SwitchContainedOwnProps; export declare const SwitchContained: React.ForwardRefExoticComponent & React.RefAttributes>; export declare const Wrapper: import("styled-components").StyledComponent<"div", any, import("../utils/systemProps").SystemProps, never>; export {};