export declare const uidLabel: { group: string; queryType: string; type: string; options: { label: string; value: string; }[]; }; export declare const fileNameLabel: { group: string; queryType: string; type: string; options: { label: string; value: string; }[]; }; export declare const fileSizeLabel: { group: string; queryType: string; type: string; options: { label: string; value: string; }[]; }; export declare const urlLabel: { group: string; queryType: string; type: string; options: { label: string; value: string; }[]; }; export declare const titleLabel: { group: string; queryType: string; type: string; options: { label: string; value: string; }[]; }; export declare const suggestForAssets: (data: any) => Promise<{ queryData: any[]; count: number; withOperator?: undefined; afterKey?: undefined; } | { queryData: any; count: any; withOperator: boolean; afterKey?: undefined; } | { withOperator: boolean; queryData: any; count: number; afterKey: boolean; }>;