export declare class ReaderType {
    static FunctionName: string;
    static FunctionParams: string;
    static Text: string;
}
export interface ReaderToken {
    type: ReaderType;
    value: string;
}
export declare class ReaderV1 {
    static read(c: string, trim?: boolean): ReaderToken[];
}
export declare class ReaderV2 {
    static read(c: string, trim?: boolean): ReaderToken[];
}
