import { MixedSection } from '../../../state'; import { ComponentPropsWithRef, Dispatch, ReactNode, SetStateAction } from 'react'; import { ActiveMenu } from './add-section.component'; interface Props extends ComponentPropsWithRef<'li'> { areaName: string; sectionType: string; label: string; fromId?: string; initialConfig: () => MixedSection; Icon: () => ReactNode; setActiveMenu: Dispatch>; } export default function AddableSection({ areaName, sectionType, label, fromId, initialConfig, Icon, setActiveMenu, className, ...otherProps }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=addable-section.component.d.ts.map