import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface AnchorLinksProps { small?: boolean | null; children: ReactNode; } /** * The `` and `` components are used together to display a list of anchor * links for navigation within the page. Use these to link to `

` or `

` anywhere within your * page. As long as the anchor link text and header text matches the link will work. * * For most pages, we recommend starting with a `PageDescription` followed by `AnchorLinks` if the * content is long enough. */ export declare const AnchorLinks: MdxComponent; export default AnchorLinks;