import React from "react";
interface StkSwitchProps {
    id: string;
    backgroundColor?: string;
    disabled?: boolean;
    readOnly?: boolean;
}
declare const StkSwitch: React.FC<StkSwitchProps>;
export default StkSwitch;
