import { BaseProps } from "../_utils/props.js"; import React from "react"; //#region src/anchor/types.d.ts interface AnchorProps extends BaseProps, Omit, 'children' | 'onChange' | 'onClick'> { affix?: boolean; type?: 'dot' | 'line'; offsetBottom?: number; offsetTop?: number; getContainer?: () => HTMLElement | Window; onChange?: (currentActiveLink: string) => void; onClick?: (e: React.MouseEvent, link: { title: string; href: string; }) => void; children?: React.ReactNode; } interface AnchorLinkProps extends BaseProps, React.ComponentPropsWithoutRef<'a'> { href: string; title: string; children?: React.ReactElement[]; } //#endregion export { AnchorLinkProps, AnchorProps }; //# sourceMappingURL=types.d.ts.map