import * as pulumi from "@pulumi/pulumi"; /** * Generates a list of numbers using a start value, a limit value, and a step value. * Start and step may be omitted, in which case start defaults to zero and step defaults to either one or negative one * depending on whether limit is greater than or less than start. */ export declare function range(args: RangeArgs, opts?: pulumi.InvokeOptions): Promise; export interface RangeArgs { limit: number; start?: number; step?: number; } export interface RangeResult { readonly result: number[]; } /** * Generates a list of numbers using a start value, a limit value, and a step value. * Start and step may be omitted, in which case start defaults to zero and step defaults to either one or negative one * depending on whether limit is greater than or less than start. */ export declare function rangeOutput(args: RangeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface RangeOutputArgs { limit: pulumi.Input; start?: pulumi.Input; step?: pulumi.Input; }