import { IControl } from '../controls/interfaces/IControl'; /** * Visits all controls in a control tree and calls `fn(control)` for each. * @param control - Control * @param fn - Function to run on each control */ export declare function visitControls(control: IControl, fn: (control: IControl) => void): void; //# sourceMappingURL=ControlVisitor.d.ts.map