declare const Clarity: {
    init : (projectId: string) => void;
    setTag : (key: string, value: string | string[]) => void;
    identify : (customId : string, customSessionId?: string, customPageId?: string, friendlyName?: string) => void;
    consent : (consent?: boolean) => void;
    consentV2 : (consentOptions?: { ad_Storage: "granted" | "denied"; analytics_Storage: "granted" | "denied" }) => void;
    upgrade : (reason : string) => void;
    event : (eventName : string) => void;
}

export default Clarity;
