import type { Cartorio } from '@/@types/domain/cartorioTypes'; import { Protesto } from '../../utils/parseProtesto'; import React from 'react'; export declare const ProtestoItem: React.MemoExoticComponent<({ protesto, showInstrumento, onOpenCartorioModal, extensionInstalled, tags }: { protesto: Protesto; showInstrumento: boolean; onOpenCartorioModal?: (cartorio?: Cartorio | null) => void; extensionInstalled?: boolean; tags?: (string | RegExp)[]; }) => React.JSX.Element>; export declare const Instrumento: ({ nm_chave, cpfCnpj, extensionInstalled, tags, onExtensionRequired }: { nm_chave?: string; cpfCnpj?: string; extensionInstalled?: boolean; tags?: (string | RegExp)[]; onExtensionRequired?: () => void; }) => React.JSX.Element;