import React from 'react'; export interface SprintSearchProps { sprintId: string | undefined; setSprintId: (sprintId: string | undefined) => void; currentSprintId: string | undefined; setCurrentSprintId: (sprintId: string | undefined) => void; setEndDate: (endDate: string) => void; restDayShow: boolean; setRestDayShow: (restDayShow: boolean) => void; useCurrentSprint?: boolean; setUseCurrentSprint: (useCurrentSprint: boolean) => void; projectId?: string; onEmpty: () => void; } declare const SprintSearch: React.FC; export default SprintSearch;