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