import { GenericInput } from '../types/inputs'; /** * XML API Inputs - Legacy! */ export default class InputsLegacy { /** * Map single input (generic) * Legacy method * * @param {Element} input * @param {string | string[]} wantedAttributes * @returns {BaseInputType} */ static mapSingle(input: Element, wantedAttributes?: string | string[]): GenericInput; /** * Map inputs (generic) * Legacy method * * @param {Element[]} xmlInputs * @param wantedAttributes * @returns {GenericInput[]} */ static mapGeneric(xmlInputs: Element[], wantedAttributes?: string | string[]): GenericInput[]; } //# sourceMappingURL=inputs-legacy.d.ts.map