import * as pulumi from "@pulumi/pulumi"; /** * Removes the specified set of characters from the start and end of the given string. */ export declare function trim(args: TrimArgs, opts?: pulumi.InvokeOptions): Promise; export interface TrimArgs { cutset: string; input: string; } export interface TrimResult { readonly result: string; } /** * Removes the specified set of characters from the start and end of the given string. */ export declare function trimOutput(args: TrimOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface TrimOutputArgs { cutset: pulumi.Input; input: pulumi.Input; }