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