///
import React from 'react';
import { TextStyle } from 'react-native';
import { Action } from './PropsType';
export interface OperationContainerProps {
actions: Action[];
onAnimationEnd?: (visible: boolean) => void;
}
export default class OperationContainer extends React.Component {
constructor(props: OperationContainerProps);
onClose: () => void;
render(): JSX.Element;
}