import { BaseEntity } from 'typeorm';
import { ConfigurationPropertyValueType, EConfigurationProperty } from './helpers/configuration-type.helper';
export declare class ConfigurationNotFoundException extends Error {
}
export declare class Configuration extends BaseEntity {
    id: number;
    name: string;
    value: string;
    static get<T extends EConfigurationProperty>(name: T): Promise<ConfigurationPropertyValueType[T] | null>;
}
