import React from 'react'; import { IQuickSearchValue } from '@/components/quick-search'; import { ISearchVO } from '@/common/types'; import { IBurndownChartType } from '.'; export interface BurnDownSearchProps { projectId?: string; sprintId: string | undefined; setSprintId: (sprintId: string | undefined) => void; currentSprintId: string | undefined; setCurrentSprintId: (sprintId: string | undefined) => void; setEndDate: (endDate: string) => void; type: IBurndownChartType; setType: (type: IBurndownChartType) => void; quickFilter: IQuickSearchValue; setQuickFilter: (quickFilter: IQuickSearchValue) => void; restDayShow: boolean; setRestDayShow: (restDayShow: boolean) => void; useCurrentSprint?: boolean; setUseCurrentSprint: (useCurrentSprint: boolean) => void; searchVO?: ISearchVO; setSearchVO: (searchVO: ISearchVO) => void; onEmpty: () => void; } declare const BurndownSearch: React.FC; export default BurndownSearch;