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;
}
/**
 * @example
 *
 * ```tsx
 * <Blockquote>
 *   <p>... but they&rsquo;ll never take our freedom!</p>
 *   <footer>William Wallace</footer>
 * </Blockquote>
 * ```
 *
 */
export declare const Blockquote: import("react").ForwardRefExoticComponent<BlockquoteProps & import("react").RefAttributes<HTMLQuoteElement>>;
//# sourceMappingURL=blockquote.d.ts.map