import { QBasePath } from "./base/QBasePath";
export declare class QBooleanPath<ConvertedType = boolean> extends QBasePath<boolean, ConvertedType> {
    protected formatValue(value: boolean): string;
    isTrue(): import("..").QFilterExpression;
    isFalse(): import("..").QFilterExpression;
}
