import type { ProjectInfo } from './cli-api'; export declare const LOCAL_SAVE_FILENAME = ".strapi-cloud.json"; export type LocalSave = { project?: Omit; }; type DeepPartial = { [P in keyof T]?: T[P] extends object ? DeepPartial : T[P]; }; export type LocalPatch = { project?: DeepPartial>; }; export declare function save(data: LocalSave, { directoryPath }?: { directoryPath?: string; }): Promise; export declare function retrieve({ directoryPath, }?: { directoryPath?: string; }): Promise; export declare function patch(patchData: LocalPatch, { directoryPath }?: { directoryPath?: string; }): Promise; export declare function deleteConfig({ directoryPath }?: { directoryPath?: string; }): Promise; export {}; //# sourceMappingURL=strapi-info-save.d.ts.map