import * as factory from '../../factory';
import type { ActionRepo } from '../../repo/action';
import type { PotentialActionRepo } from '../../repo/potentialAction';
import type { SettingRepo } from '../../repo/setting';
declare function triggerWebhook(params: factory.task.IData<factory.taskName.TriggerWebhook> & {
    project: {
        id: string;
    };
}): (repos: {
    action: ActionRepo;
    potentialAction: PotentialActionRepo;
    setting: SettingRepo;
}) => Promise<void>;
export { triggerWebhook };
