export declare const AuthenticationTypeMatrix: {
    authenticationType: ("session" | "jwt" | "oauth2")[];
};
export declare const ReactiveMatrix: {
    reactive: boolean[];
};
export declare const MatrixMonolith: {
    authenticationType: ("session" | "jwt" | "oauth2")[];
    applicationType: "monolith"[];
};
export declare const MatrixMicroservice: {
    applicationType: "microservice"[];
    authenticationType: ("jwt" | "oauth2")[];
};
export declare const MatrixGateway: {
    applicationType: "gateway"[];
    authenticationType: ("jwt" | "oauth2")[];
};
export declare const MatrixMicroserviceGateway: {
    applicationType: ("microservice" | "gateway")[];
    authenticationType: ("jwt" | "oauth2")[];
};
