import type { ComponentPropsWithRef, ElementType } from 'react';
export type FooterProperties<ET extends ElementType = 'footer'> = {
    /** Tag of Component */
    tag?: ElementType;
} & ComponentPropsWithRef<ET>;
/**
 * 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: {
    <ET extends ElementType = "footer">({ className, tag: Tag, ...remainingProps }: FooterProperties<ET>): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default Footer;
