import * as pulumi from "@pulumi/pulumi"; /** * Removes the specified prefix from the start of the given string, if present. */ export declare function trimprefix(args: TrimprefixArgs, opts?: pulumi.InvokeOptions): Promise; export interface TrimprefixArgs { input: string; prefix: string; } export interface TrimprefixResult { readonly result: string; } /** * Removes the specified prefix from the start of the given string, if present. */ export declare function trimprefixOutput(args: TrimprefixOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface TrimprefixOutputArgs { input: pulumi.Input; prefix: pulumi.Input; }