import { CountryNameEnumType, SignatureAlgorithmEnumType } from './index';
import { BaseModelWithTenant } from '../BaseModelWithTenant';
export declare class Certificate extends BaseModelWithTenant {
    static readonly MODEL_NAME: string;
    /**
     * Fields
     */
    serialNumber: number;
    issuerName: string;
    organizationName: string;
    commonName: string;
    keyLength?: number | null;
    validBefore?: string | null;
    signatureAlgorithm?: SignatureAlgorithmEnumType | null;
    countryName?: CountryNameEnumType | null;
    isCA?: boolean;
    pathLen?: number | null;
    certificateFileId?: string | null;
    privateKeyFileId?: string | null;
    signedBy?: string | null;
}
