export declare const ATTR_FUNCTION_ASSIGN_VALUE = "$function$"; interface useCtxSelectOptionsParams { eventDataMap?: any; visible?: boolean; path?: any[]; defaultOptions?: any[]; type?: string; data?: any; todoObjectMap?: any; onlyCurrent?: boolean; todoOptionKey?: string; todoEvents?: any[]; needResponseCodeKey?: boolean; } declare const useCtxSelectOptions: (useCtxSelectOptionsParams: useCtxSelectOptionsParams) => { ctxSelectOptions: any; getCtxSelectOptions: (_path: any, _data?: any) => any; funcLibList: import("../../hooks/useFunctionLib").FunctionLibFormatProps[]; presetFunctions: any; refreshFuncLibList: () => void; }; export default useCtxSelectOptions;