export interface WOISwitchButtonProps {
    trackWidth: number;
    trackHeight: number;
    padding?: number;
    trackBorderRadius?: number;
    trackBorderColor?: string;
    trackBorderWidth?: number;
    trackActiveColor?: string;
    trackInActiveColor?: string;
    thumbSize: number;
    thumbBorderRadius?: number;
    thumbBorderColor?: string;
    thumbBorderWidth?: number;
    thumbActiveColor?: string;
    thumbInActiveColor?: string;
    isActive: boolean;
    thumbIconSize?: number;
    thumbActiveIcon?: string;
    thumbInActiveIcon?: string;
}
declare const WOISwitchButton: (props: WOISwitchButtonProps) => import("react/jsx-runtime").JSX.Element;
export default WOISwitchButton;
