155058f92SEvan Baconimport React from 'react';
2*8a424bebSJames Ideimport { BlockQuoteProps, QuoteProps, TimeProps } from './Text.types';
355058f92SEvan Baconimport { TextProps } from '../primitives/Text';
455058f92SEvan Baconimport { ViewProps } from '../primitives/View';
555058f92SEvan Baconexport declare const P: React.ComponentType<TextProps>;
655058f92SEvan Baconexport declare const B: React.ComponentType<TextProps>;
755058f92SEvan Baconexport declare const S: React.ComponentType<TextProps>;
855058f92SEvan Baconexport declare const I: React.ComponentType<TextProps>;
9896103abSandyexport declare const Q: React.ComponentType<QuoteProps>;
10896103abSandyexport declare const BlockQuote: React.ComponentType<BlockQuoteProps>;
1155058f92SEvan Baconexport declare const BR: React.ComponentType<TextProps>;
1255058f92SEvan Baconexport declare const Mark: React.ComponentType<TextProps>;
1355058f92SEvan Baconexport declare const Code: React.ComponentType<TextProps>;
149b26454eSBartosz Kaszubowskitype PreProps = TextProps | ViewProps;
1555058f92SEvan Baconexport declare const Pre: React.ComponentType<PreProps>;
16896103abSandyexport declare const Time: React.ComponentType<TimeProps>;
1755058f92SEvan Baconexport declare const Strong: React.ComponentType<TextProps>;
1855058f92SEvan Baconexport declare const Del: React.ComponentType<TextProps>;
1955058f92SEvan Baconexport declare const EM: React.ComponentType<TextProps>;
20f4a8f663SEvan Baconexport declare const Span: React.ComponentType<TextProps>;
2155058f92SEvan Baconexport {};
2200ec8cabSEvan Bacon//# sourceMappingURL=Text.d.ts.map