import { Repository, ObjectLiteral } from 'typeorm';
import { GetCandlesticksOptions, CandlesticksResult } from '@timescaledb/schemas';
export declare function getCandlesticks<T extends ObjectLiteral>(this: Repository<T>, options: GetCandlesticksOptions): Promise<CandlesticksResult[]>;
