import React from 'react';
interface CustomSwitchProps {
    id: string;
    checked: boolean;
    onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
}
declare const CustomSwitch: React.ComponentType<CustomSwitchProps & {
    className?: string;
    trackColorOn?: string;
    trackColorOff?: string;
    thumbColorOn?: string;
    thumbColorOff?: string;
}>;
export default CustomSwitch;
