/**
 * BaseFacet class
 * All facets must extend this base class.
 */
export declare class BaseFacet {
    _producer: string;
    _schemaURL: string;
    constructor(producer: string, schemaURL: string);
}
