import { AbstractControl } from '@angular/forms'; /** * Determine if the item is an AbstractControl * * @param x - The item to test * @returns The result * * @example * isAbstractControl(new FormControl()) // Returns: true * isAbstractControl('hi') // Returns: false */ export declare const isAbstractControl: (x: Record) => x is AbstractControl;