/**
 * @deprecated This interface is deprecated and will be removed in a future release.
 */
export interface BlockquoteProps extends React.HTMLAttributes<HTMLQuoteElement> {
    children?: React.ReactNode;
    /**
     * The quote style
     *
     * @default "default"
     */
    variant?: "default" | "norwegian";
    /**
     * Change the default rendered element for the one passed as a child, merging their props and behavior.
     *
     * @default false
     */
    asChild?: boolean;
}
/** @deprecated This component is deprecated and will be removed in a future release. */
export declare const Blockquote: import("react").ForwardRefExoticComponent<BlockquoteProps & import("react").RefAttributes<HTMLQuoteElement>>;
//# sourceMappingURL=blockquote.d.ts.map