/**
 * Find a cookie by name
 * @param cookieName - The name of the cookie
 * @returns A cookie string or null
 */
declare const getCookie: (cookieName: string) => string | null;
export default getCookie;
