import * as pulumi from "@pulumi/pulumi"; /** * Returns true if any of the elements in a given collection are true or \"true\". * It also returns false if the collection is empty. */ export declare function anytrue(args: AnytrueArgs, opts?: pulumi.InvokeOptions): Promise; export interface AnytrueArgs { input: any[]; } export interface AnytrueResult { readonly result: boolean; } /** * Returns true if any of the elements in a given collection are true or \"true\". * It also returns false if the collection is empty. */ export declare function anytrueOutput(args: AnytrueOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface AnytrueOutputArgs { input: pulumi.Input; }