import { type TreeNode } from '../utils/layout';
/** Create test for an action widget */
export declare function generateWidgetTest(options: {
    /** The name of the action widget. */
    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[]>;
