import * as pulumi from "@pulumi/pulumi"; /** * Removes one or more newline characters from the end of the given string. */ export declare function chomp(args: ChompArgs, opts?: pulumi.InvokeOptions): Promise; export interface ChompArgs { input: string; } export interface ChompResult { readonly result: string; } /** * Removes one or more newline characters from the end of the given string. */ export declare function chompOutput(args: ChompOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface ChompOutputArgs { input: pulumi.Input; }