type Spacing = 'none' | 'tight' | 'loose'; type Alignment = 'leading' | 'trailing' | 'center'; export interface TextContainerProps { /** Align children’s on the horizontal axis */ alignment?: Alignment; /** Adjust spacing between children */ spacing?: Spacing; } /** * TextContainer is used to wrap text elements such as TextBlock and Heading, and provide * consistent vertical spacing. */ export declare const TextContainer: "TextContainer" & { readonly type?: "TextContainer" | undefined; readonly props?: TextContainerProps | undefined; readonly children?: true | undefined; }; export {}; //# sourceMappingURL=TextContainer.d.ts.map