import type { Dispatch } from '@atlaskit/editor-common/event-dispatcher';
import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
interface TableLocalIdPluginState {
    parsedForLocalIds: boolean;
}
/**
 * Ensures uniqueness of `localId`s on tables being created or edited
 */
declare const createPlugin: (dispatch: Dispatch) => SafePlugin<TableLocalIdPluginState>;
export { createPlugin };
