import { Tiles } from "./tiles"; interface Props { current: boolean; mission: number; disabled: boolean; tiles: Tiles; select: (mission: number) => void; height: number; } export declare const MissionMapTileNew: (props: Props) => JSX.Element; export {};