/** * 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 function AnchorLinks({ children, small }: { children: any; small: any; }): React.FunctionComponentElement>>; export namespace AnchorLinks { namespace propTypes { let children: PropTypes.Requireable; let small: PropTypes.Requireable; } } import React from 'react'; import PropTypes from 'prop-types';