import { Element } from "hast";

//#region src/utils/wrapTokenFragments.d.ts
declare const NO_TOKEN: unique symbol;
declare const MULTIPLE_TOKENS: unique symbol;
type TokenFragmentState = number | typeof NO_TOKEN | typeof MULTIPLE_TOKENS;
declare function wrapTokenFragments(container: Element): TokenFragmentState;
//#endregion
export { wrapTokenFragments };
//# sourceMappingURL=wrapTokenFragments.d.ts.map