1import { TextProps } from '../primitives/Text'; 2import { ViewProps } from '../primitives/View'; 3 4export type QuoteProps = React.PropsWithChildren<TextProps & { cite?: string }>; 5 6export type BlockQuoteProps = React.PropsWithChildren<ViewProps & { cite?: string }>; 7 8export type TimeProps = React.PropsWithChildren<TextProps & { dateTime?: string }>; 9 10export type LinkProps = React.PropsWithChildren< 11 TextProps & { 12 /** @platform web */ 13 href?: string; 14 /** @platform web */ 15 target?: string; 16 /** @platform web */ 17 rel?: string; 18 /** @platform web */ 19 download?: boolean | string; 20 } 21>; 22