/**
 * Type definitions for Layer 1 Finance conventions
 */
export interface ConventionSet {
    name: string;
    tribe: string;
    conventions: Record<string, any>;
    philosophyImpact: PhilosophyImpact;
    metrics: Record<string, string | number>;
}
export interface PhilosophyImpact {
    [key: string]: string | number | boolean;
}
export { PhilosophyMetrics } from '@iota-big3/layer-0';
//# sourceMappingURL=types.d.ts.map