import { InputProps } from '../interfaces.js';
export type IInputSwitch = {
    color?: string;
    design?: "checkbox";
} & InputProps;
