import * as pulumi from "@pulumi/pulumi"; /** * Returns the portion of list between from (inclusive) and to (exclusive). */ export declare function slice(args: SliceArgs, opts?: pulumi.InvokeOptions): Promise; export interface SliceArgs { from?: number; list: any[]; to?: number; } export interface SliceResult { readonly result: any[]; } /** * Returns the portion of list between from (inclusive) and to (exclusive). */ export declare function sliceOutput(args: SliceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface SliceOutputArgs { from?: pulumi.Input; list: pulumi.Input; to?: pulumi.Input; }