import { type TreeNode } from '../utils/layout';
/** Create test script for an action */
export declare function generateActionTest(options: {
    /** Has the name of the actions. Can also be a path with the name (e.g actions/hello) */
    name: string;
    /** Specifies in which folder the action is located in */
    actionsDir: string;
    /** Has the current working directory */
    cwd: string;
    /** Whether to write to the filesystem or not */
    dryRun?: boolean;
}): Promise<TreeNode[]>;
