export type ContainerProps = { /** * @property {'horizontal' | 'vertical'} [direction] * @version 0.0.0-beta */ direction?: 'horizontal' | 'vertical'; }; export type ContainerSlots = { /** * @slot default * @version 0.0.0-beta */ default: {}; };