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