import { ToReact } from './helpers.types'; import { ZQuote } from '../quote'; export type ZrQuote_Props = ToReact<'Quote'>; type ZrQuote_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; Description: typeof Description; AuthorName: typeof AuthorName; }; declare const Content: import('react').FC; declare const Description: import('react').FC; declare const AuthorName: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrQuote_Type; export { Namespace as ZrQuote };