import { LinkProps } from '../../atoms/Link/Link'; import React, { HTMLAttributes } from 'react'; /** * Use this component to render a Zopa Footer * * @param baseUrl {string} the url the links will use as a base * @param renderLink {(props: LinkProps) => React.ReactNode} a callback function allowing an application to render the Logo component * @param mainCustomLegalCopy {string|string[]} if you need to pass some specific main legal copy from another partner use this * @param additionalCopy {string[]} if you need to pass additional copy after the legal copy */ export interface FooterProps extends HTMLAttributes { baseUrl?: string; renderLink?: (props: LinkProps) => React.ReactNode; mainCustomLegalCopy?: string | string[]; additionalCopy?: string[]; } export declare const footerLinkStyle: import("styled-components").FlattenSimpleInterpolation; declare const ZopaFooter: ({ baseUrl, renderLink, additionalCopy, mainCustomLegalCopy, ...rest }: FooterProps) => JSX.Element; export default ZopaFooter;