import type { Company, CompanySearchQuery } from "../types/company.types";
import type { PaginatedResponse } from "../types/contact.types";
export declare class CompaniesService {
    static getCompanies(query: CompanySearchQuery, apiKey: string): Promise<PaginatedResponse<Company>>;
    static getCompany(uuid: string, apiKey: string): Promise<Company>;
}
