/**
 * Find all contenteditable, textarea and editable input elements passed holder contains
 * @param holder - element where to find inputs
 * @returns - all inputs of the holder element
 */
export declare function findAllInputs(holder: HTMLElement): HTMLElement[];
