import { Project, ProjectBase } from './projectState'; export interface ProjectMetadataPayload { accounting_parent_customer_id: string | null; accounting_parent_customer_integration_id: string | null; accounting_project_customer_id: string | null; accounting_project_customer_integration_id: string | null; accounting_project_id: string; accounting_project_integration_id: string | null; accounting_project_name: string | null; start_date: string | null; status: string | null; } export interface ProjectBasePayload { accounting_project_id: string; accounting_project_integration_id?: string | null; accounting_project_name?: string; } export declare const toProjectBasePayload: (project: ProjectBase | undefined) => ProjectBasePayload; export declare const mapProjectBasePayloadToProjectBase: (payload: ProjectBasePayload) => ProjectBase; export declare const mapProjectMetadataPayloadToProject: (payload: ProjectMetadataPayload) => Project;