import { AnchorProps } from "antd";

//#region src/Toc/type.d.ts
interface TocItemType {
  children?: TocItemType[];
  id: string;
  title: string;
}
interface TocMobileProps {
  activeKey?: string;
  getContainer?: AnchorProps['getContainer'];
  headerHeight?: number;
  items: TocItemType[];
  onChange?: (activeKey: string) => void;
  tocWidth?: number;
}
interface TocProps extends TocMobileProps {
  isMobile?: boolean;
}
//#endregion
export { TocItemType, TocMobileProps, TocProps };
//# sourceMappingURL=type.d.mts.map