import { PropsWithChildren } from 'react';
export type GridPageRouterProps = PropsWithChildren<{
    /** Used to determine the base path for the component. Default is Grid:default */
    routerBaseName?: string;
    /** If true use a MemoryRouter, which prevents the browser URL from updating. For testing purposes only. */
    useMemoryRouter?: boolean;
}>;
/**
 * A router wrapper for the GridPage, which applies a router around the children to support using react-router APIs
 * from within SWC.
 */
export default function GridPageRouter(props: GridPageRouterProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=GridPageRouter.d.ts.map