import React from 'react';
import { TypeProps as LogoType } from "../../../atoms/logo";
import { FooterInfoMarryBaby } from "../../../../interfaces/types";
export type Props = {
    className?: string;
    logoType?: LogoType;
    footerMenu?: FooterInfoMarryBaby;
    background?: string;
};
declare const MarryBabyFooter: ({ logoType, footerMenu, background, }: Props) => React.JSX.Element;
export { MarryBabyFooter };
