/**
* Helper utility functions for QueryBuilder.
*/export declare classQueryBuilderUtils {
/**
* Checks if given value is a string representation of alias property,
* e.g. "post.category" or "post.id".
*/staticisAliasProperty(str: any): str is string;
}