import { IProperty, IPropertySettings } from "./IProperty";
export declare class PropertyRepository {
    private readonly postgres;
    constructor();
    getPropertyPreferences(propertyId: string, keys?: string[]): Promise<IPropertySettings | null>;
    getProperty(propertyId: string): Promise<IProperty | null>;
    getAllProperties(): Promise<any[]>;
}
