import { IReplay } from '@picsart/web-replay-sdk'; import { IGeneralContext, ILayerChangeOptions, ILayersChangeCallback } from '../../types'; declare const onLayersChange: (callback: ILayersChangeCallback, options?: ILayerChangeOptions) => () => void; declare const detectLayersChanges: (context: IGeneralContext, replay?: IReplay) => boolean | undefined; declare const runLayerChangeHandlers: (context: IGeneralContext) => void; export { onLayersChange, detectLayersChanges, runLayerChangeHandlers };