export declare class Client { name: string; id: string; secret: string; allowedScopes: string[]; redirectUris: string[]; allowForgotPassword: boolean; allowRegister: boolean; constructor(name: string, id: string, secret: string, allowedScopes: string[], redirectUris: string[], allowForgotPassword: boolean, allowRegister: boolean); }