import { Asset, ID, Get, StreamAsset } from "../types"; export interface GetAssetRequestProps { asset_id: string | ID; parameters?: { include_deleted: boolean; type: AssetType | AssetType[]; }; } export declare type GetAssetResponse = Asset | StreamAsset; /** @internal */ export declare const getAsset: (get: Get) => (props: GetAssetRequestProps) => Promise; export declare enum AssetType { FILE = "file", FOLDER = "folder", VERSIONSTACK = "version_stack", BUNDLE = "bundle" }