import React from 'react'; import { Moment } from 'moment'; export interface AccumulationSearchProps { range: [Moment, Moment]; onRangeChange: (value: [Moment, Moment]) => void; onBoardChange: (boardId: string) => void; boardId: string; quickFilterIds: string[]; onQuickSearchChange: (quickFilterIds: string[]) => void; projectId?: string; float?: boolean; } declare const AccumulationSearch: React.FC; export default AccumulationSearch;