import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime'; import { HTMLAttributes } from 'react'; import { Props } from '../@types/Props.js'; interface FooterProps extends HTMLAttributes, Props { /** * Whether the "Back to top" link is visible in the footer. */ showBackToTop?: boolean; } /** * [Storybook](https://guardian.github.io/storybooks/?path=/story/source_react-components-footer--default-default-theme) • * [GitHub](https://github.com/guardian/csnx/tree/main/libs/@guardian/source/src/react-components/footer/Footer.tsx) • * [NPM](https://www.npmjs.com/package/@guardian/source) * * 🛠 This component is [in development](https://www.theguardian.design/2a1e5182b/p/99cfad-component-status/t/06d689). */ declare const Footer: ({ showBackToTop, children, cssOverrides, ...props }: FooterProps) => _emotion_react_jsx_runtime.JSX.Element; export { Footer }; export type { FooterProps };