export type ElementWithContext = { new (...args: any[]): E; withContext(context: C): { new (...args: any): E; }; }; export declare function provideContextToElements; }>(context: C, elements: E): E;