import type { ChildrenProps, ContainerSizesType, StyleProps, TextAlignmentType, TransferProps } from './shared'; export interface ContainerProps extends ChildrenProps, ContainerTextStyleProps, StyleProps, TransferProps { } export type ContainerSize = ContainerSizesType | C; export interface ContainerTextStyleProps { textAlignment?: TextAlignmentType; } export interface SpiritContainerProps extends ContainerProps { isFluid?: boolean; size?: ContainerSize; }