import { PostHog } from 'posthog-js'; import React from 'react'; import { HasCreditsType } from './components/consultasComplementares'; type ConsultaSimplesPosthog = PostHog; type ConsultaSimplesProps = { onClickQSA: (cpfCnpj: string) => void; posthog?: ConsultaSimplesPosthog; documento: string; apiKey: string; queryParams?: { data?: Record; urlData?: Record; }; onClose?: () => void; hasCredits?: HasCreditsType; onClickPrint: () => void; onAlert?: (parameters: { title?: string; message: string; }) => void; onClickConsultarProcessoJuridico?: (processoId: string) => void; initRefinBoaVista?: boolean; initRefinSerasa?: boolean; initVeiculos?: boolean; printMode?: boolean; isFinancial?: boolean; tags?: (string | RegExp)[]; extensionInstalled?: boolean; /** ID do GA4 (ex: 'G-XXXXXXX'). Opcional — se o GTM já estiver na página, não precisa. */ googleAnalyticsId?: string; }; declare const ConsultaSimples: React.FC; export default ConsultaSimples;