import { Status } from './types';
export declare type Project = {
    id: string;
    companyId: string;
    name: string;
    description: string;
    migrated: boolean;
    createdAt: Date;
    updatedAt: Date;
    status: Status;
};
