import * as pulumi from "@pulumi/pulumi"; /** * Removes any space characters from the start and end of the given string, * following the Unicode definition of \"space\" (i.e. spaces, tabs, newline, etc.). */ export declare function trimspace(args: TrimspaceArgs, opts?: pulumi.InvokeOptions): Promise; export interface TrimspaceArgs { input: string; } export interface TrimspaceResult { readonly result: string; } /** * Removes any space characters from the start and end of the given string, * following the Unicode definition of \"space\" (i.e. spaces, tabs, newline, etc.). */ export declare function trimspaceOutput(args: TrimspaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface TrimspaceOutputArgs { input: pulumi.Input; }