export interface ProjectUpdateParams { projectId: string; accountId: string; phase?: string; tier?: string; targetDate?: string; clientRef?: string; note?: string; status?: string; } export interface ProjectUpdateResult { phaseChanged?: { from: string; to: string; }; fieldsUpdated: string[]; } export declare function projectUpdate(params: ProjectUpdateParams): Promise; //# sourceMappingURL=project-update.d.ts.map