import * as pulumi from "@pulumi/pulumi"; /** * Returns the base input raised to the power of the exponent. */ export declare function pow(args: PowArgs, opts?: pulumi.InvokeOptions): Promise; export interface PowArgs { base: number; exponent: number; } export interface PowResult { readonly result: number; } /** * Returns the base input raised to the power of the exponent. */ export declare function powOutput(args: PowOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface PowOutputArgs { base: pulumi.Input; exponent: pulumi.Input; }