import { Asset } from '../redux/reducer'; declare type LabeledAsset = Asset & { projectId: string; }; export declare type FetchLabeledAssetArgs = { projectId: string; labelId: string; }; export declare function fetchLabeledAsset({ projectId, labelId, }: FetchLabeledAssetArgs): Promise; export {};