import React from 'react'; import { MinervaProps } from '../layout'; declare type BaseProps = MinervaProps & React.InputHTMLAttributes; export interface SwitchProps extends BaseProps { disabled?: boolean; switchSize?: string; switchColor?: string; checked?: boolean; htmlFor: string; onChange?: () => any; style?: any; } export interface CustomSwitchProps { checked?: boolean; switchColor?: string; switchSize: number; } export declare const Switch: React.ForwardRefExoticComponent & React.RefAttributes>; export default Switch;