/** * @license * Copyright (c) Peculiar Ventures, LLC. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { X509Certificates } from '../../crypto'; export declare class CertificateChainViewer { /** * The certificate value for decode and show details. Use PEM or DER. */ certificates: X509Certificates; /** * If `true` - component will show split-button to download certificate as PEM or DER. */ download?: boolean; selectedCertificateIndex: number; private renderEmptyState; render(): any; }