import type { X509Meta, EntityRow } from '../types'; export default function useCertificate(): { certificateDataCache: import("vue").Ref<{ [id: string]: X509Meta | undefined; }, { [id: string]: X509Meta | undefined; }>; getCertificateData: (row: EntityRow) => { schemaIssuer: string; schemaSubject: string; schemaExpiry: number; schemaSanNames: string; schemaKeyUsages: string[]; }; }; //# sourceMappingURL=useCertificate.d.ts.map