import { PefinRefinSerasaResponse } from '../../@types/domain'; import React from 'react'; export declare function useRefinSerasa(documento: string): { isLoading: boolean; error: Error | null; pendencias: { valor: string; totalvalor: string; vencimento: string; ocorrencia: string; entrada: string; informante: string; contrato: string; avalista: string; cidade: string; uf: string; situacao: string; credor: string; orgaoemissor: string; totalpendencias: string; totalcredores: string; categoria: "PEND\u00CANCIAS FINANCEIRAS" | "RESTRI\u00C7\u00D5ES FINANCEIRAS" | "D\u00CDVIDAS VENCIDAS"; modalidade: string; }[]; consultaRealizada: boolean; loadingProgress: number; response: import("../requestContextTypes").ParsedResponse | null; }; declare const RefinSerasa: React.FC<{ documento: string; }>; export default RefinSerasa;