interface TriggerAutomationRequest$1 { /** hookId is the id of the hook to trigger */ hookId?: string; /** payload is the payload to send to the hook */ payload?: Record | null; } interface TriggerAutomationResponse$1 { } interface TriggerAutomationRequest { /** hookId is the id of the hook to trigger */ hookId?: string; /** payload is the payload to send to the hook */ payload?: Record | null; } interface TriggerAutomationResponse { } type __PublicMethodMetaInfo = { getUrl: (context: any) => string; httpMethod: K; path: string; pathParams: M; __requestType: T; __originalRequestType: S; __responseType: Q; __originalResponseType: R; }; declare function triggerAutomation(): __PublicMethodMetaInfo<'POST', {}, TriggerAutomationRequest, TriggerAutomationRequest$1, TriggerAutomationResponse, TriggerAutomationResponse$1>; export { type __PublicMethodMetaInfo, triggerAutomation };