import * as pulumi from "@pulumi/pulumi"; /** * Adds a given number of spaces after each newline character in the given string. */ export declare function indent(args: IndentArgs, opts?: pulumi.InvokeOptions): Promise; export interface IndentArgs { input: string; spaces: number; } export interface IndentResult { readonly result: string; } /** * Adds a given number of spaces after each newline character in the given string. */ export declare function indentOutput(args: IndentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface IndentOutputArgs { input: pulumi.Input; spaces: pulumi.Input; }