import React from 'react'; type HeroDirectoryProps = { children: React.ReactNode; disableSearch?: boolean; }; declare function HeroDirectory(props: HeroDirectoryProps): JSX.Element; export default HeroDirectory;