import { IconDescriptor } from "../window/types"; export declare type SearchQuery = string | null; export declare type SearchResultType = { actions: { name: string; }[]; description: string; displayName: string; icon: IconDescriptor; score: number; name: string; provider: FunctionStringCallback; type: string; }; export declare type SearchResults = SearchResultType[] | null; export declare type SearchProvider = { displayName: string; channel: string; providerActionTitle: string; providerActionCallback: Function; windowName: string; name: string; }; export declare type SearchProviderResponse = { provider: SearchProvider; returnCallback: string; searchId: string; data: SearchResults; }; //# sourceMappingURL=types.d.ts.map