import * as pulumi from "@pulumi/pulumi"; /** * Removes the specified suffix from the end of the given string, if present. */ export declare function trimsuffix(args: TrimsuffixArgs, opts?: pulumi.InvokeOptions): Promise; export interface TrimsuffixArgs { input: string; suffix: string; } export interface TrimsuffixResult { readonly result: string; } /** * Removes the specified suffix from the end of the given string, if present. */ export declare function trimsuffixOutput(args: TrimsuffixOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface TrimsuffixOutputArgs { input: pulumi.Input; suffix: pulumi.Input; }