export declare type Upload = {
    id: string;
    name: string;
    key: string;
    size: number;
    createdAt: Date;
    updatedAt: Date;
};
