import ElementRegistry from 'diagram-js/lib/core/ElementRegistry';
export declare class BpmnLintError {
    element: any;
    message: string;
    constructor(element: any | any[], message: string);
}
export declare function validate(registry: ElementRegistry, root: any, props: any): BpmnLintError | undefined;
