import { CardSpacing } from "../card.config"; export interface CardContextProps { /** Sets the level of roundness of the corners. "moderate" is 16px and "curved" is 20px. * "default" (alias for "moderate") and "large" (alias for "curved") are deprecated. Use "moderate" or "curved" instead. */ roundness: "moderate" | "curved" | "default" | "large"; /** Size of card for applying padding */ spacing: CardSpacing; } declare const CardProvider: import("react").Provider, useCardContext: () => CardContextProps; export { CardProvider, useCardContext };