/// <reference types="node" />
export type ICookieRow = {
    hostKey: string;
    name: string;
    value: string;
    encryptedValue: Buffer;
    path: string;
    expiresUtc: number;
    isSecure: number;
};
export type ICookie = Omit<ICookieRow, 'encryptedValue'>;
export declare function query(dbpath: string, site?: string): Promise<ICookieRow[]>;
