import type { Component } from "../../serverTypes";
interface CreateTriggersProps {
    component: Component;
    dryRun: boolean;
    verbose: boolean;
    sourceDir: string;
    destinationDir: string;
}
export declare const createTriggers: ({ component, dryRun, verbose, sourceDir, destinationDir, }: CreateTriggersProps) => Promise<{
    triggersIndex: string | void;
    triggers: (string | void)[];
}>;
export {};
