import React from 'react'; import type { FooterItemProps } from './types/footerProps'; export interface FooterProps { items?: FooterItemProps; language: string; zIndex?: number; collapseSize: number; } /** @visibleName Footer */ declare const Footer: ({ items, language, zIndex, collapseSize, }: FooterProps) => React.JSX.Element; /** @component */ export default Footer;