import { IReplay } from '@picsart/web-replay-sdk'; import { IGeneralContext, ILayoutChangeCallback, ILayoutChangeOptions } from '../../types'; declare const onLayoutChange: (callback: ILayoutChangeCallback, options?: ILayoutChangeOptions) => () => void; declare const detectLayoutChanges: (context: IGeneralContext, replay?: IReplay) => boolean | undefined; declare const runLayoutChangeHandlers: (context: IGeneralContext) => void; export { onLayoutChange, detectLayoutChanges, runLayoutChangeHandlers };