export declare const getCompanyInfo: (sym: string) => Promise<StockCompanyInfo>;
export interface StockCompanyInfo {
    companyName: string;
    description: string;
    sector: string;
    subsector: string;
    corporateLife: string;
    incorporationDate: string;
    numberOfDirectors: string;
    stockholdersMeetingAsPerByLaws: string;
    fiscalYear: string;
    externalAuditor: string;
    transferAgent: string;
    businessAddress: string;
    emailAddress: string;
    telephoneNumber: string;
    faxNumber: string;
    website: string;
}
