import * as react_jsx_runtime from 'react/jsx-runtime';
import { ReactNode } from 'react';
import { ILink } from '../../types/components.mjs';
import 'next/image';
import 'next/link';
import 'react-player';

type HiveFooterProps = {
    className?: string;
    logo?: ReactNode;
    href?: string;
    description?: string;
    items?: HiveFooterItems;
};
declare function HiveFooter({ className, logo, href, description, items, }: HiveFooterProps): react_jsx_runtime.JSX.Element;
declare namespace HiveFooter {
    var DEFAULT_ITEMS: HiveFooterItems;
}
interface HiveFooterItems {
    developer?: ILink[];
    company?: ILink[];
    resources?: ILink[];
    links?: ILink[];
}

export { HiveFooter, type HiveFooterItems, type HiveFooterProps };
