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