import { FooterItem as IFooterItem, FooterSection as IFooterSection, FooterNodeAddress } from '../../../state'; import { FooterItemAdminWrapperProps } from './footer.types'; import { ComponentPropsWithRef, FunctionComponent } from 'react'; import { FooterElementAdminWrapperProps } from './footer.types'; type Props = { item: IFooterItem; parentNode: IFooterSection | IFooterItem; FooterItemAdminWrapper?: FunctionComponent; FooterElementAdminWrapper?: FunctionComponent; Heading: FunctionComponent & { level: number; className?: string; }>; parentNodeAddress: FooterNodeAddress; }; export default function FooterItem({ item, parentNodeAddress, parentNode, FooterItemAdminWrapper, FooterElementAdminWrapper, Heading, }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=footer-item.component.d.ts.map