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