import React from 'react'; import { DSLQuery } from '@lingxiteam/dsl'; export interface CompsEventChangeProps { DSLCore?: DSLQuery; actionChanges: any[]; isMobile: boolean; implementation: 'custom' | 'event' | string; pageContainerType: any; beforeCustomEvent: any; afterCustomEvent: any; type: 'source' | 'target'; } declare const CompsEventChangeProvider: React.FC; export default CompsEventChangeProvider;