import { IResponse, IContext } from '../../types'; import { ICertificate } from '..'; export interface IGetCertificateApiResponse { certificate: ICertificate; } export interface IGetCertificateApiRequest { certificate_id: string; } export type GetCertificateResponse = IResponse; export declare const getCertificate: ({ httpClient, }: IContext) => ({ certificate_id, }: IGetCertificateApiRequest) => Promise>;