import { FC, HTMLAttributes, PropsWithChildren } from 'react'; export interface MegamenuFooterProps extends HTMLAttributes { /** Classi aggiuntive da usare per il componente Megamenu Footer */ className?: string; vertical?: boolean; } export declare const MegamenuFooter: FC & { Item: typeof Item; }; declare const Item: FC>; export {};