import { TextProps } from '../primitives/Text'; import { ViewProps } from '../primitives/View'; export type QuoteProps = React.PropsWithChildren; export type BlockQuoteProps = React.PropsWithChildren; export type TimeProps = React.PropsWithChildren; export type LinkProps = React.PropsWithChildren< TextProps & { /** @platform web */ href?: string; /** @platform web */ target?: string; /** @platform web */ rel?: string; /** @platform web */ download?: boolean | string; } >;