import { IControl } from './IControl'; /** * Defines a Control that has child controls. * * This is the minimal definition required by the Runtime (ControlHandler) * See `ContainerControl` for the actual class used by Control implementations. */ export interface IContainerControl extends IControl { children: IControl[]; } /** * Type-guard function for the @see IContainerControl interface. * * @param control - Control to test * @returns true if the argument implements the @see ContainerControl interface. */ export declare function isContainerControl(control: IControl): control is IContainerControl; //# sourceMappingURL=IContainerControl.d.ts.map