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