import { APIClient } from "../client";
export interface AnalyzeCompanyResponse {
    name?: string;
    description?: string;
    industry?: string;
    size?: string;
    website?: string;
    linkedin?: string;
    [key: string]: any;
}
export declare const analyzeCompany: (client: APIClient, linkedinUrl: string) => Promise<AnalyzeCompanyResponse>;
