import * as pulumi from "@pulumi/pulumi"; /** * Converts the first letter of each word in the given string to uppercase. */ export declare function title(args: TitleArgs, opts?: pulumi.InvokeOptions): Promise; export interface TitleArgs { input: string; } export interface TitleResult { readonly result: string; } /** * Converts the first letter of each word in the given string to uppercase. */ export declare function titleOutput(args: TitleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface TitleOutputArgs { input: pulumi.Input; }