import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export declare class ResourceServerScopeType { ScopeName: Value; ScopeDescription: Value; constructor(properties: ResourceServerScopeType); } export interface UserPoolResourceServerProperties { UserPoolId: Value; Identifier: Value; Scopes?: List; Name: Value; } export default class UserPoolResourceServer extends ResourceBase { static ResourceServerScopeType: typeof ResourceServerScopeType; constructor(properties: UserPoolResourceServerProperties); }