///
import { type Context } from '@semantic-api/api';
import { description } from './description';
declare const download: (_id: string, context: Context) => Promise<{
content: Buffer;
owner?: import("@semantic-api/api").Reference;
_id?: import("@semantic-api/api").Reference;
created_at?: Date | undefined;
updated_at?: Date | undefined;
link: string;
immutable: boolean;
size: number;
last_modified: Date;
filename: string;
mime: string;
absolute_path: string;
relative_path: string;
download_link: string;
}>;
export default download;