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<string, any>) => x is AbstractControl;
