export type GranularityType = 15 | 30 | 60;
export declare class ContractMatrixModel<T> {
    hs: T[];
    ss: T[];
    qs: T[];
    constructor(hLabels: string[], callBack: (ts: string | null) => T);
    getContracts(granularity: GranularityType): T[];
}
