import { FC } from 'react';
interface IOpetateProps {
    record: Record<string, any>;
    rowKey?: string;
    handleAdd?: (row?: any, addInChildren?: boolean) => void;
    handleDelete?: (rowKey?: string) => void;
    options?: string[];
    getLength?: number;
    quickOpetateClearAll?: boolean;
}
declare const QuickOpetate: FC<IOpetateProps>;
export default QuickOpetate;
