/** * Returns a cookie with the specified name, * or undefined if nothing is found * * @param name - The name of the cookie whose value you want to get * @param cookiesString - You can specify a custom cookies string (for example, if you are not in a browser) */ export declare const getCookie: (name: string, cookiesString?: string) => string | undefined;