import { TradeBar } from '../types.ts'; import { Computable } from './computable.ts'; type BarKind = 'time' | 'volume' | 'tick'; type TradeBarComputableOptions = { kind: BarKind; interval: number; name?: string; }; export declare const computeTradeBars: (options: TradeBarComputableOptions) => (() => Computable); export {}; //# sourceMappingURL=tradebar.d.ts.map