import { GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link SamlApplicationSecret} for the original type. */ export type CreateSamlApplicationSecret = { id: string; tenantId?: string; applicationId: string; privateKey: string; certificate: string; createdAt?: number; expiresAt: number; active: boolean; }; export type SamlApplicationSecret = { id: string; tenantId: string; applicationId: string; privateKey: string; certificate: string; createdAt: number; expiresAt: number; active: boolean; }; export type SamlApplicationSecretKeys = 'id' | 'tenantId' | 'applicationId' | 'privateKey' | 'certificate' | 'createdAt' | 'expiresAt' | 'active'; export declare const SamlApplicationSecrets: GeneratedSchema;