/** * Allow detecting authenticated routes with pattern parameters * @example * routes = [ * { path: "/users/:id", component: () => <>, authenticatedRoute: true } ] */ export declare const getIsAuthRoute: (routes: Array, pathname: string) => boolean;