import { GroupPermissionProps } from '../Group'; import { Input } from '@pulumi/pulumi'; import { Environments } from '../../types'; export interface RoleProps { env?: Environments; /** The country code or GLB for Global*/ location?: string; appName: string; moduleName?: string; roleName: string; members?: Input[]; owners?: Input[]>; permissions?: Array; } export type RoleNameType = Pick; export declare const Role: ({ members, owners, permissions, ...others }: RoleProps) => import("@pulumi/pulumi").Output;