/** * An error thrown when a loader is added with the same name as a loader on one of the route's ancestors. * A route's data combines the loaders of every match, so the same name twice would be ambiguous rather * than an override. * @group Errors */ export declare class LoaderNameConflict extends Error { constructor(name?: string); }