Type alias DynamicItemsOfLayout<L>
DynamicItemsOfLayout<L>: L extends readonly [infer H extends LayoutItem, ...(infer T)] ? [FilterDynamicItem<H>] extends [never] ? T extends Layout ? DynamicItemsOfLayout<T> : readonly [] : T extends Layout ? readonly [FilterDynamicItem<H>, ...DynamicItemsOfLayout<T>] : readonly [FilterDynamicItem<H>] : readonly []