import { VdsEvent } from '../events'; export declare type ContextEvents = { 'vds-context-consumer-connect': ContextConsumerConnectEvent; }; export declare type ContextConsumerConnectEventDetail = { /** * A unique identifier used to pair a context provider and consumer. */ id: symbol; /** * Sets value on context consumer. */ setValue(value: T): void; }; export declare type ContextConsumerConnectEvent = VdsEvent>; //# sourceMappingURL=events.d.ts.map