import type { DataViewCallCombiner, DataViewCallComparator, DataViewCallSeparator } from './buffer-utils-types'; declare const addDefaultBufferFunctions: (bufferedCallParams: { combiner?: DataViewCallCombiner; comparator?: DataViewCallComparator; separator?: DataViewCallSeparator; time?: number; bufferSize?: number; }) => { combiner: DataViewCallCombiner; comparator: DataViewCallComparator; separator: DataViewCallSeparator; time?: number; bufferSize?: number; }; export default addDefaultBufferFunctions;