import * as pulumi from "@pulumi/pulumi"; /** * Determines if the input string starts with the suffix. */ export declare function startswith(args: StartswithArgs, opts?: pulumi.InvokeOptions): Promise; export interface StartswithArgs { input: string; prefix: string; } export interface StartswithResult { readonly result: boolean; } /** * Determines if the input string starts with the suffix. */ export declare function startswithOutput(args: StartswithOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface StartswithOutputArgs { input: pulumi.Input; prefix: pulumi.Input; }