import type { AxiosInstance } from 'axios'; import type { ProjectMap, LegacyProjectMap, CustomerConfig } from '../types.js'; export declare function isProjectMap(x: unknown): x is ProjectMap; export declare function isLegacyProjectMap(x: unknown): x is LegacyProjectMap; /** * Pull a single project and all its data */ export declare function pullSingleProject(client: AxiosInstance, customer: CustomerConfig, projectId: string | null, verbose?: boolean, silentOverwrite?: boolean): Promise; /** * Pull all projects for a customer */ export declare function pullAll(client: AxiosInstance, customer: CustomerConfig, projectId?: string | null, verbose?: boolean, silentOverwrite?: boolean): Promise; //# sourceMappingURL=projects.d.ts.map