/** * Determines how the framework will activate a component's children when the * component is activated for the first time. Possible values are: * * - "all": All child components that are not marked `active="false"` will be * activated. This is the default. * - "none": No children will be activated. * - "first": The first child component that is not marked `active="false"` will * be activated. */ export type ChildActivationType = "all" | "none" | "first";