/** * Retrieves the cookie value for the reference name passed in. * This can be `null` if the token or the reference name is not found in the cookie. * * For example: * ``` * const CSRFToken = getEntry('splunkweb_csrf_token_8000'); * ``` * * @param {String} name Reference to the name in the cookie. * * @returns {String|null} If found, returns the cookie value associated with the name; null otherwise. * * @public * */ export declare function getEntry(name: string): string | null;