import { IntegracoesParameterRecord } from "./IntegrationParameterRecord";
export declare class IntegracaoAzureSSORecord {
    Tenant_Id: number;
    Id: number;
    Name: string;
    InfraIntegrationDesc: string;
    Is_Active: boolean;
    ActiveSince: Date;
    Updated: Date;
    UpdatedBy: string;
    Parameters: IntegracoesParameterRecord[];
}
