export interface AsyncSelectContext { data: any; value: any; params: any; field?: string; colDef: any; rowIndex?: number | null; } export declare const resolveAsyncSelectOptions: (params: any, context: AsyncSelectContext) => Promise; export declare const clearAsyncSelectOptionsCache: (cacheKey?: string) => void;