import { LangState, LangStateMachine } from "../LangStateMachine"; /** * State machine for recognizing C family strings and comments. * Directly usable for Java, C and C++ */ export declare class CFamilyStateMachine extends LangStateMachine { constructor(state?: LangState); clone(): CFamilyStateMachine; consume(ch: string): void; }