import type { Appearance, Emphasis, IdProps, InlineAlignment, TextSize } from '../shared'; export interface TextBlockProps extends IdProps { /** * Size of the text */ size?: TextSize; /** * Use to emphasize a word or a group of words. */ emphasis?: Emphasis; /** * Changes the visual appearance */ appearance?: Extract; /** * Align text along the main axis. */ inlineAlignment?: InlineAlignment; } /** * Text block is used to render a block of text that occupies the full width available, like a paragraph. */ export declare const TextBlock: "TextBlock" & { readonly type?: "TextBlock" | undefined; readonly props?: TextBlockProps | undefined; readonly children?: true | undefined; }; //# sourceMappingURL=TextBlock.d.ts.map