import type { NestingTokenFixContext } from '../type'; /** * Fixes any invalid nesting. * * If it is a block level element inside 1 or more inline elements * than those inline elements will be split at the point where the * block level is and the block level element placed between the split * parts. i.e. * [inline]A[blocklevel]B[/blocklevel]C[/inline] * Will become: * [inline]A[/inline][blocklevel]B[/blocklevel][inline]C[/inline] * */ export declare function fixNestingTokens(context: NestingTokenFixContext): void;