import { type TreeNode } from '../utils/terminal/layout';
/** Generates sample result for an action */
export declare function generateActionSampleResult(options: {
    /** The name of the action. */
    name: string;
    /** Specifies in which folder an action sample result should be generated in */
    sampleResultDir: string;
    /** Has the current working directory */
    cwd: string;
    /** Whether to write to the filesystem or not */
    dryRun?: boolean;
}): Promise<TreeNode | null>;
