type StayState = 'approach' | 'closed' | 'completed' | 'contract' | 'deleted' | 'negotiation' | 'payment' | 'prospect'; export type Stay = { contractApprovedByClientAt: string; contractApprovedByOwnerAt: string; hubspotId: number; hubspotTailorDealId: number; id: string; lastContractId?: string; projectName: string; state: StayState; type: 'stay'; }; export {};