import * as pulumi from "@pulumi/pulumi"; /** * Parses the given string as a representation of an integer in the specified base * and returns the resulting number. The base must be between 2 and 62 inclusive. * . */ export declare function parseint(args: ParseintArgs, opts?: pulumi.InvokeOptions): Promise; export interface ParseintArgs { base?: number; input: string; } export interface ParseintResult { readonly result: number; } /** * Parses the given string as a representation of an integer in the specified base * and returns the resulting number. The base must be between 2 and 62 inclusive. * . */ export declare function parseintOutput(args: ParseintOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface ParseintOutputArgs { base?: pulumi.Input; input: pulumi.Input; }