import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
interface AppodealMrecProps {
    placement?: string;
    onAdLoaded?: Function;
    onAdFailedToLoad?: Function;
    onAdClicked?: Function;
    onAdExpired?: Function;
    style?: StyleProp<ViewStyle>;
}
declare const AppodealMrec: (props: AppodealMrecProps) => React.JSX.Element;
export default AppodealMrec;
