import { Base, Type } from "./type";
import { FilterSyntaxTokenType } from "./FilterSyntaxTokenType";
import { FilterSyntaxIdentifierExpressionSyntax } from "./FilterSyntaxIdentifierExpressionSyntax";
import { FilterSyntaxPrimitiveValueExpressionSyntax } from "./FilterSyntaxPrimitiveValueExpressionSyntax";
/**
 * @hidden
 */
export declare class FilterSyntaxPrintingHelper extends Base {
    static $t: Type;
    static b(a: FilterSyntaxTokenType): string;
    static a(a: FilterSyntaxIdentifierExpressionSyntax): string;
    static c(a: FilterSyntaxPrimitiveValueExpressionSyntax): string;
}
