/**
 * Represents a taxonomy type in the system
 */
export declare class Taxonomy {
    readonly name: string;
    readonly description: string;
    readonly value: string;
    readonly types: string[];
    constructor(data: any);
    /**
     * Get the list of content types this taxonomy is available for
     */
    getTypes(): string[];
    /**
     * Check if this taxonomy is available for a specific content type
     */
    isAvailableFor(type: string): boolean;
}
