import type { JSONObject } from 'tiny-types';
import { TinyType } from 'tiny-types';
import { Description } from './Description';
import { Name } from './Name';
export declare class BusinessRule extends TinyType {
    readonly name: Name;
    readonly description: Description;
    static fromJSON(o: JSONObject): BusinessRule;
    constructor(name: Name, description: Description);
}
//# sourceMappingURL=BusinessRule.d.ts.map