import * as pulumi from "@pulumi/pulumi"; /** * Converts its argument to a number value. Only number values, null, and strings * containing decimal representations of numbers can be converted to number. All other values will result in an error */ export declare function tonumber(args: TonumberArgs, opts?: pulumi.InvokeOptions): Promise; export interface TonumberArgs { input: any; } export interface TonumberResult { readonly result?: number; } /** * Converts its argument to a number value. Only number values, null, and strings * containing decimal representations of numbers can be converted to number. All other values will result in an error */ export declare function tonumberOutput(args: TonumberOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface TonumberOutputArgs { input: any; }