export type EnvContext = { path: null | string; root: null | string; node: null | HTMLElement; isServer: boolean; isClient: boolean; }; export type AttrsMap = Record unknown>; export type AttrsReturn = { [K in keyof Map]: ReturnType; }; export type LoaderReturn = { error: Error | null; loading: true; data: Initial; } | { error: Error | null; loading: false; data: Awaited; }; //# sourceMappingURL=types.d.ts.map