import type { Action, ResolvedAction } from './cli-options';
/**
 * Either returns the resolved actions or throws when one or more are invalid.
 * @param actions
 */
export declare function validateActions(actions: Action[], options: {
    root: string;
    actionsDir: string;
}): Promise<ResolvedAction>[];
