import React from "react";
/**
 * @group Components
 */
export type NavigationRoutesProps = {
    /**
     * In case you need to override the home page
     */
    homePage?: React.ReactNode;
    children?: React.ReactNode | React.ReactNode[];
};
/**
 * This component is in charge of rendering
 * all the related routes (entity collection root views, custom views
 * or the home route) related to a {@link NavigationController}.
 * This component needs a parent {@link FireCMS}
 *
 * @group Components
 */
export declare const NavigationRoutes: React.NamedExoticComponent<NavigationRoutesProps>;
