import { PropsWithChildren } from 'react'; import { TextBlockProps } from '@shopify/post-purchase-ui-extensions'; import { ThemeTypographyStyle } from '../Theme'; export interface Props extends PropsWithChildren> { /** Changes the text based on the Theme styles */ style?: ThemeTypographyStyle; appearance?: 'accent' | TextBlockProps['appearance']; } export declare function TextBlock({ children, size, emphasized, subdued, appearance, style, id, }: Props): JSX.Element;