import type { ServerWritableStream } from "@grpc/grpc-js";
declare type ScanParams = {
    pages: string[];
    user_id: number;
    domain: string;
    full: boolean;
};
export declare type ScanRpcCall = ServerWritableStream<ScanParams, {}>;
export declare const scanStream: (rpc: ScanRpcCall) => Promise<void>;
export {};
