declare function saveToApi(content: string): Promise<{ createBranch: { branch: { name: string; }; errors: string[]; }; mergeRequestCreate: { mergeRequest: { webUrl: string; title: string; }; errors: string[]; }; commitCreate: { commit: { author: string; id: string; }; description: string; fullTitle: string; message: string; sha: string; webUrl: string; errors: string[]; }; } | undefined>; export { saveToApi as default };