declare const ReservedChars: readonly ["\"", "'", "(", ")", ";", ",", "=", "!", "~", "<", ">", " ", "\n", "\t", "\r"]; type ReservedChar = (typeof ReservedChars)[number]; export { ReservedChars }; export type { ReservedChar };