import { ReactElement } from 'react'; /** * Parses the routes of the input element * @param routes A React element containing one or multiple Route elements * @returns {Array} An array of all of the endpoints contained in the input ReactElement */ declare const GetEndpoints: (routes: ReactElement) => Array; export default GetEndpoints;