import * as pulumi from "@pulumi/pulumi"; /** * Returns the set of elements that all the input sets have in common. */ export declare function setintersection(args: SetintersectionArgs, opts?: pulumi.InvokeOptions): Promise; export interface SetintersectionArgs { input: any[][]; } export interface SetintersectionResult { readonly result: any[]; } /** * Returns the set of elements that all the input sets have in common. */ export declare function setintersectionOutput(args: SetintersectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface SetintersectionOutputArgs { input: pulumi.Input[]>; }