import type { Cookie } from '../types/internal';
/**
 * Returns page's cookies with the specified cookies parameters.
 * If there are no cookies parameters, returns all the cookies.
 */
export declare const getCookies: (cookiesParameters?: Partial<Cookie>) => Promise<readonly Cookie[]>;
