import * as pulumi from "@pulumi/pulumi"; import { output as outputs } from "./types"; /** * Use this data source to lookup [Account Roles](https://api.cloudflare.com/#account-roles-properties). */ export declare function getAccountRoles(args: GetAccountRolesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAccountRoles. */ export interface GetAccountRolesArgs { /** * The account for which to list the roles. */ accountId: string; } /** * A collection of values returned by getAccountRoles. */ export interface GetAccountRolesResult { readonly accountId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A list of roles object. See below for nested attributes. */ readonly roles: outputs.GetAccountRolesRole[]; } export declare function getAccountRolesOutput(args: GetAccountRolesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getAccountRoles. */ export interface GetAccountRolesOutputArgs { /** * The account for which to list the roles. */ accountId: pulumi.Input; }