import type { Issue } from "../../../../types/schema";
export declare const getIssue: ({ url, pageUrl, userId, noRetries }: any, chain?: boolean) => Promise<any>;
export declare const getIssues: ({ userId, domain, pageUrl, }: {
    userId: number;
    domain?: string;
    pageUrl?: string;
}, limit?: number) => Promise<import("mongodb").WithId<import("bson").Document>[]>;
export declare const getIssuesPaging: (params: any) => Promise<Issue[]>;
