import { AutomationAction } from '../../automations/types/actions'; import { AutomationTrigger } from '../../automations/types/triggers'; type UseCreateAutomationQueryParams = { getActions: () => Promise; getTrigger: () => Promise; }; export declare function useCreateAutomationQueryParams(): UseCreateAutomationQueryParams; export {};