import React, { ReactNode } from 'react'; export interface OperationBarProps { className?: string; btnClassName?: string; customComponents?: Array; imageMaxSize?: number; okText?: string; okBtn?: ReactNode; getCropper?: any; showDeaultToolbar?: boolean; onClick?: () => void; onRevert?: () => void; onRotate?: () => void; onZoom?: (num: number) => void; onReplace?: (src: string) => void; } declare const OperationBar: React.FC; export default OperationBar;