export interface ActionDataOptionsType { value: string; compId: string; objName: string; pageJsonId: string; compLib?: string; todoCallbacks?: string[]; extOptions?: Record; visibleOnEventTree?: boolean; todoOptions?: any[]; [key: string]: any; } declare const useCreateActionData: () => { createActionData: (options: ActionDataOptionsType, currData?: any) => any; }; export default useCreateActionData;