/**
 * Gets company disclosures of a ticker symbol from PSE Edge.
 * @param sym Ticker Symbol (e.g. GLO, TEL, ALI)
 * @returns CompanyDisclosure
 */
export declare const getCompanyDisclosures: (sym: string) => Promise<{
    id: string;
    link: string | undefined;
    name: string;
    date: string;
}[] | undefined>;
