import { BaseConfigEntity } from './BaseConfigEntity';
export declare class OpenIdConfigEntity extends BaseConfigEntity {
    clientId: string;
    clientSecret: string;
    scopes: Array<string>;
    issuer: string;
    redirectUrl: string;
    dangerouslyAllowInsecureHttpRequests: boolean;
    clientAuthMethod: 'basic' | 'post' | undefined;
    ownerId?: string;
    tenantId?: string;
}
//# sourceMappingURL=OpenIdConfigEntity.d.ts.map