/** * Writes a message into the log or lists all files in the workspace * * @remarks * * This task is useful for local development and testing of both the scaffolder * and scaffolder templates. * * @public */ export declare function createDebugLogAction(): import("@backstage/plugin-scaffolder-node").TemplateAction<{ message?: string | undefined; listWorkspace?: boolean | undefined; }, import("@backstage/types").JsonObject>; export declare function recursiveReadDir(dir: string): Promise;