import React from 'react';
interface CustomSwitchProps {
    checked: boolean;
    onCheckedChange: (checked: boolean) => void;
    themeColor?: string;
}
declare const CustomSwitch: React.FC<CustomSwitchProps>;
export default CustomSwitch;
