export class DomElementBindingDescription {
    /**
     *
     * @param {string} selector
     * @param {function(Element):DomElementProcessor} processor
     * @return {DomElementBindingDescription}
     */
    static from({ selector, processor }: string): DomElementBindingDescription;
    /**
     * css selector
     * @type {string}
     */
    selector: string;
    /**
     *
     * @type {function(Element):DomElementProcessor}
     */
    processor: (arg0: Element) => DomElementProcessor;
}
//# sourceMappingURL=DomElementBindingDescription.d.ts.map