import { BlockquoteStyles } from './blockquote.css'; import * as React from 'react'; interface BlockquoteProps extends React.ComponentPropsWithoutRef<'blockquote'>, BlockquoteStyles { asChild?: boolean; } declare const Blockquote: React.ForwardRefExoticComponent>; interface BlockquoteAuthorProps extends React.ComponentPropsWithoutRef<'cite'>, BlockquoteStyles { asChild?: boolean; } declare const BlockquoteAuthor: React.ForwardRefExoticComponent>; export { Blockquote, BlockquoteAuthor }; //# sourceMappingURL=blockquote.d.ts.map