import type { DispatchAnalyticsEvent } from '@atlaskit/editor-common/analytics';
import type { Dispatch } from '@atlaskit/editor-common/event-dispatcher';
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
export declare const META_KEYS: {
    OVERFLOW_TRIGGER: string;
    OVERFLOW_STATE_CHANGED: string;
};
declare const createPlugin: (dispatch: Dispatch, dispatchAnalyticsEvent: DispatchAnalyticsEvent, tableResizingEnabled: boolean) => SafePlugin<{
    lastTrigger: undefined;
}>;
export { createPlugin };
