import { UTMCookieSignature } from "../types/utm.type";
declare type CookiesType = {
    httpOnly: boolean;
    secure: boolean;
    sameSite: 'none';
    maxAge: number;
    path: string;
};
export declare const cookiesSettings: CookiesType;
export declare const utmParams: Array<UTMCookieSignature>;
export {};
