declare module '@salesforce/design-system-react/components/builder-header/nav' { import React from 'react'; type Props = { /** * Provide children of the types `` or `` to define the structure of the navigation section. * ``` * * * * * * * ``` */ children?: React.ReactNode; }; function Component(props: Props): JSX.Element; export default Component; }