import { Property } from "./abstractions"; export declare function or(left: Property, right: Property): Property; export declare function and(left: Property, right: Property): Property; export declare function not(prop: Property): Property;