import * as pulumi from "@pulumi/pulumi"; /** * Determines if the input string ends with the suffix. */ export declare function endswith(args: EndswithArgs, opts?: pulumi.InvokeOptions): Promise; export interface EndswithArgs { input: string; suffix: string; } export interface EndswithResult { readonly result: boolean; } /** * Determines if the input string ends with the suffix. */ export declare function endswithOutput(args: EndswithOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface EndswithOutputArgs { input: pulumi.Input; suffix: pulumi.Input; }