import { type TreeNode } from '../utils/layout';
/** Create action script */
export declare function generateAction(options: {
    /** The name of the action. */
    name: string;
    /** Specifies in which folder the action should be generated in */
    actionsDir: string;
    /** Has the current working directory */
    cwd: string;
    /** Whether to write to the filesystem or not */
    dryRun?: boolean;
    /** Functions input */
    functionsInput: string;
    /** Functions glob */
    functionsGlob: string;
}): Promise<TreeNode>;
