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