/**
 * Schema of an Abstract Syntax Tree Node.
 * This schema only describes the properies that are mandatory across all nodes.
 * Additional attrs can exist depending on the entity the Node represents.
 */
declare const _default: {
    type: string;
    properties: {
        nodeType: {
            type: string;
            minLength: number;
        };
    };
    patternProperties: {
        '^.+$': {
            oneOf: {
                type: string;
            }[];
        };
    };
    required: string[];
    additionalProperties: boolean;
};
export default _default;
//# sourceMappingURL=ast.d.ts.map