export declare const SchemaType: {
    /**
     * Xml schema type.
     */
    readonly Xml: "xml";
    /**
     * Json schema type.
     */
    readonly Json: "json";
};
/**
 * Schema Type. Immutable.
 */
export type SchemaType = (typeof SchemaType)[keyof typeof SchemaType];
