import { AnvisaResponse } from "./anvisaResponse"; export declare function getHttp(url: string): Promise; export type TipoCategoriaRegulatoria = { ativo: string; descricao: string; id: number; }; export declare function getTipoCategoriaRegulatoria(): Promise; export declare function getByAutoCompleteByName(text: string, opts?: { signal?: AbortSignal; }): Promise; export interface Response extends AnvisaResponse { content: Company[]; } export interface Company { cnpj: string; razaoSocial: string; nomeFantasia?: string; } export declare function getCnpj(text: string): Promise;