import { AnvisaResponse } from "./anvisaResponse"; import { HttpOptions } from "./http/httpModule"; 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?: HttpOptions): Promise; export interface Response extends AnvisaResponse { content: Company[]; } export interface Company { cnpj: string; razaoSocial: string; nomeFantasia?: string; } export declare function getCnpj(text: string): Promise;