import React from 'react'; import { ComponentSize } from '../../tokens/sizes'; import { themeType } from '../../tokens/themes'; export interface SwitchProps { size?: ComponentSize; type?: themeType; padding?: ComponentSize; checked?: boolean; onChange?: () => void; disabled?: boolean; className?: string; style?: React.CSSProperties; } export declare const Switch: React.ForwardRefRenderFunction; declare const _default: React.ForwardRefExoticComponent>; export default _default; //# sourceMappingURL=switch.d.ts.map