import { DialogProps } from '@material-ui/core/Dialog'; import { FunctionComponent } from 'react'; export interface RoundSetSelectProps extends Omit { onClose?: () => void; } /** * Component used to select economic system for set. */ declare const RoundSetSelect: FunctionComponent; export default RoundSetSelect;