import { default as React } from 'react'; import { IconProps } from '../../../../tedi/components/base/icon/icon'; export type FooterCategory = { /** * Category elements */ elements?: React.ReactNode[]; heading: React.ReactNode; icon?: string | IconProps; }; /** * @deprecated Use `Footer` from `@tedi-design-system/react/tedi` instead. */ export type FooterProps = { /** * Footer Categorys */ categories: FooterCategory[]; /** * Src and styles of logo to show */ logo?: { src: string; alt: string; style?: React.CSSProperties; }; /** * Additional classname */ className?: string; /** * Additional element to display in the bottom of the footer */ bottomElement?: React.ReactNode; }; /** * @deprecated Use `Footer` from `@tedi-design-system/react/tedi` instead. */ export declare const Footer: (props: FooterProps) => JSX.Element; export default Footer;