import { Get, Post } from "../types"; import { AssetType, GetAssetRequestProps, GetAssetResponse } from "./getAsset"; import { AssetSearchRequestProps, AssetSearchResponse } from "./search"; export declare class AssetsAPI { /** [Frame.io API Reference](https://frameio.com/dev/automation/documentation/current#operation/getThreadV2) */ getAsset: (props: GetAssetRequestProps) => Promise; search: (props: AssetSearchRequestProps) => Promise; /** @internal */ constructor(get: Get, post: Post); } export { AssetType, GetAssetResponse };