1 | import { type HTMLChakraProps, type SlotRecipeProps, type UnstyledProp } from "../../styled-system";
|
2 | declare const useBlockquoteStyles: () => Record<string, import("../..").SystemStyleObject>;
|
3 | export { useBlockquoteStyles };
|
4 | export interface BlockquoteRootBaseProps extends SlotRecipeProps<"blockquote">, UnstyledProp {
|
5 | }
|
6 | export interface BlockquoteRootProps extends HTMLChakraProps<"figure", BlockquoteRootBaseProps> {
|
7 | }
|
8 | export declare const BlockquoteRoot: import("react").ForwardRefExoticComponent<BlockquoteRootProps & import("react").RefAttributes<HTMLElement>>;
|
9 | export declare const BlockquotePropsProvider: React.Provider<BlockquoteRootBaseProps>;
|
10 | export interface BlockquoteContentProps extends HTMLChakraProps<"blockquote"> {
|
11 | }
|
12 | export declare const BlockquoteContent: import("react").ForwardRefExoticComponent<BlockquoteContentProps & import("react").RefAttributes<HTMLElement>>;
|
13 | export interface BlockquoteCaptionProps extends HTMLChakraProps<"figcaption"> {
|
14 | }
|
15 | export declare const BlockquoteCaption: import("react").ForwardRefExoticComponent<BlockquoteCaptionProps & import("react").RefAttributes<HTMLElement>>;
|
16 | export interface BlockquoteIconProps extends HTMLChakraProps<"svg"> {
|
17 | }
|
18 | export declare const BlockquoteIcon: import("react").ForwardRefExoticComponent<BlockquoteIconProps & import("react").RefAttributes<SVGElement>>;
|