export declare const projects: {
    client_id: number;
    description: string;
    project_number: string;
    id: number;
    color: string;
    is_favorite: boolean;
    last_updated_on: string;
    client_name: string;
    name: string;
}[];
export declare const invoices: {
    id: number;
    name: string;
    due_on: string;
    status: string;
    client_name: string;
    amount: string;
    left_to_pay: string;
}[];
export declare const notes: {
    id: number;
    name: string;
    is_collection: boolean;
    created_by: string;
    date: string;
}[];
export declare const folders: {
    id: number;
    name: string;
    has_children: boolean;
}[];
export declare const files: {
    id: number;
    name: string;
    has_children: boolean;
    url: string;
    created_by: string;
    size: number;
    date: string;
}[];
//# sourceMappingURL=data.d.ts.map