/** * @packageDocumentation * Shared character classification helpers for lightweight parser/token logic. */ /** * Determine whether a single-character string is an ASCII identifier part. * * @remarks * This intentionally mirrors lightweight token checks used by internal string * parsers. It does not attempt to model full Unicode ECMAScript identifiers. */ export declare const isAsciiIdentifierPartCharacter: (character: string) => boolean; /** * Determine whether a single-character string should be treated as whitespace * in internal import/token parsing helpers. */ export declare const isKnownWhitespaceCharacter: (character: string) => boolean; //# sourceMappingURL=text-character.d.ts.map