import type { ComponentPropsWithRef, ElementType } from 'react'; export type FooterProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Content anchored at the bottom of a page to provide important information or links. * @docs {@link https://design.visa.com/components/footer/?code_library=react | See Docs} * @vgar TODO * @wcag TODO */ declare const Footer: { ({ className, tag: Tag, ...remainingProps }: FooterProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Footer;