import { FileType } from '@zeniai/client-epic-state'; import { DownloadMenuItem } from '../../downloadOverlay/SimpleDownloadMenuButton'; import { DownloadbleCockpitProps } from './cockpitTypes'; type SimpleDownloadMenu = { simpleMenuItems: DownloadMenuItem[]; onDownloadClick: (type: FileType) => void; }; export interface DownloadMenuOptions { downloadMenu: SimpleDownloadMenu; type: "simple_menu"; } export default function CockpitDownloadButton(props: DownloadbleCockpitProps): import("react/jsx-runtime").JSX.Element; export {};