export declare type SearchLookupsPayload = { input: string; }; export declare type SearchLookupsMeta = { limit: number; }; /** * @registeredEvent * @title Search Lookups * @description notifies that all lookups having `excludeFromSearch` set to false should be searched against a value * @payload { * input: string * } * @meta { * limit: number * } */ export declare const searchLookups: import("../factory").Factory; export declare type SearchLookupsFoundPayload = Record; export declare type SearchLookupsFoundMeta = { input: string; }; /** * @registeredEvent * @title Search Lookups Found * @description fired when values from a text search for lookups are found * @payload { * [key: string]: any[] * } * @meta { * input: string * } */ export declare const searchLookupsFound: import("../factory").Factory;