interface Options {
    project_id: string;
    mesg: any;
    sendResponse: (any: any) => void;
}
export default function handleSyncdoc({ project_id, mesg, sendResponse, }: Options): Promise<void>;
export {};
