import { Base, Type } from "./type";
/**
 * @hidden
 */
export declare class StockInfo extends Base {
    static $t: Type;
    private _company;
    get company(): string;
    set company(a: string);
    private _symbol;
    get symbol(): string;
    set symbol(a: string);
    private _sector;
    get sector(): string;
    set sector(a: string);
}
