/**
 * delete the synchronization cookie
 *
 * usecases
 * - browser detects that the anti-csrf token is not in sync w/ auth token -> delete the sync cookie to inform server that user is logged out
 *
 * note
 * - decodes the synchronization token to extract the domain and path to correctly delete it
 */
export declare const deleteSynchronizationCookie: () => void;
