/** * States for C family languages */ import { LangState } from "../LangStateMachine"; export declare const Normal: LangState; export declare const DoubleString: LangState; export declare const SlashStarComment: LangState; export declare const SlashSlashComment: LangState; export declare const EscapeNextCharacter: LangState;