import { DeadCenter } from 'pages/gallery'; import React from 'react'; import { Button } from 'react-bootstrap'; import constants from 'utils/strings/constants'; interface Props { show: boolean onHide: () => void updateExportFolder: (newFolder: string) => void; exportFolder: string startExport: () => void exportSize: string; selectExportDirectory: () => void } export default function ExportInit(props: Props) { return ( <> ); }