import type { Cookie } from '../types/internal';
/**
 * Deletes cookies with the specified cookies parameters.
 * If there are no cookies parameters, deletes all the cookies.
 */
export declare const deleteCookies: (cookiesParameters?: Partial<Cookie>[]) => Promise<void>;
