import type { AbstractControl } from "../lib/abstract-conrol"; type Controls = { controls?: Array | { [key: string | number]: AbstractControl; }; } & unknown; export declare function findFormControl(parent: AbstractControl & Controls, path: string | string[]): T; export {};