interface IProps { visible: boolean; textColor?: string; backgroundColor?: string; onRequestClose?: () => void; onFinishClosing?: () => void; children?: any; } export declare const ANIMATION_DURATION = 200; declare const OptionsModal: ({ visible, backgroundColor, textColor, onRequestClose, onFinishClosing, children, }: IProps) => JSX.Element; export default OptionsModal;