import * as $dara from '@darabonba/typescript'; export declare class CredentialPublicConfigRemoteConfig extends $dara.Model { timeout?: number; ttl?: number; uri?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CredentialPublicConfigUsers extends $dara.Model { password?: string; username?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CredentialPublicConfig extends $dara.Model { authConfig?: { [key: string]: string; }; authType?: string; headerKey?: string; jwks?: string; prefix?: string; provider?: string; remoteConfig?: CredentialPublicConfigRemoteConfig; users?: CredentialPublicConfigUsers[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }