import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export declare class SamlConfigOptions { SessionTimeout?: Value; UserAttribute?: Value; Metadata: Value; GroupAttribute?: Value; constructor(properties: SamlConfigOptions); } export interface SecurityConfigProperties { Type?: Value; Description?: Value; SamlOptions?: SamlConfigOptions; Name?: Value; } export default class SecurityConfig extends ResourceBase { static SamlConfigOptions: typeof SamlConfigOptions; constructor(properties?: SecurityConfigProperties); }