import { FunctionComponent } from 'react'; export interface Props { editable: boolean; onFocus: () => void; onEnableVectorMode: () => void; isVectorModeEnabled: boolean; onDelete: () => void; deleteInactive: boolean; onExport: () => void; onImport: () => void; } export declare const ActionBar: FunctionComponent;