import { TransactionMeta } from '../factory'; export declare type LookupLiveSearching = { property: string; input: string; }; export declare type LookupLiveSearchingMeta = TransactionMeta & { limit: number; dependencies?: Record; currentValues?: any[]; keys?: string[]; }; export declare type LookupLiveFound = { label: string; value: any; }[]; /** * @registeredEvent * @title Lookup Live Searching * @description fired upon searching on a Select form input * @payload { * property: string * input: string * } * @meta { * limit: number * input: { * [key: string]: any[] * } * currentValues?: any[] * keys?: string[] * } */ export declare const lookupLiveSearching: import("../factory").Factory; /** * @registeredEvent * @title Lookup Live Found * @description fired when options for a Select form input are found * @payload { * [key: string]: any[] * } */ export declare const lookupLiveFound: import("../factory").Factory;