import React from 'react';
import { LOCALE } from "../../../interfaces/types";
export type Props = {
    className?: string;
    isMobile?: boolean;
    divId?: string;
    adUnitPath: string;
    contentId?: string;
    customTargetings?: {
        [key: string]: (string | number) | (string | number)[];
    };
    locale?: LOCALE;
    isMarryBaby?: boolean;
};
declare const FixedBottomAdBlock: ({ className, adUnitPath, divId, isMobile, contentId, customTargetings, locale, isMarryBaby, }: Props) => React.JSX.Element;
export { FixedBottomAdBlock };
