import React from "react"; import type { color, label, ripple, className, disabled, objectType } from "../../types/components/checkbox"; export interface SwitchProps extends React.ComponentProps<"input"> { color?: color; label?: label; ripple?: ripple; className?: className; disabled?: disabled; containerProps?: objectType; labelProps?: objectType; circleProps?: objectType; inputRef?: React.Ref; } export declare const Switch: React.ForwardRefExoticComponent & React.RefAttributes>; export default Switch; //# sourceMappingURL=index.d.ts.map