import React from 'react'; interface Props { onChange: (boardId: string) => void; value: string; projectId?: string; } declare const SelectBoard: React.FC; export default SelectBoard;