import { Asset, Get, StreamAsset } from "../types"; export interface AssetSearchRequestProps { query: string; parameters: { account_id: string; project_id?: string; include?: string; include_deleted?: boolean; page?: number; page_size?: number; shared_projects?: boolean; sort?: string; type?: string; }; } export declare type AssetSearchResponse = (Asset | StreamAsset)[]; /** @internal */ export declare const search: (get: Get) => (props: AssetSearchRequestProps) => Promise; export declare enum AssetType { FILE = "file", FOLDER = "folder", VERSIONSTACK = "version_stack", BUNDLE = "bundle" }