import { CardBackgroundProps } from '../CardBackground/CardBackground'; type MenuRegionProps = { children: React.ReactNode; className?: string; }; declare const DEFAULT_CARD_BACKGROUND: CardBackgroundProps; declare function resolveCardBackground(cardBackground: CardBackgroundProps | undefined): CardBackgroundProps; declare const Header: import('react').NamedExoticComponent; declare const Content: import('react').NamedExoticComponent; declare const Footer: import('react').NamedExoticComponent; declare const SLOT_TYPES: { Header: import('react').NamedExoticComponent; Content: import('react').NamedExoticComponent; Footer: import('react').NamedExoticComponent; }; export { Header, Content, Footer, SLOT_TYPES, DEFAULT_CARD_BACKGROUND, resolveCardBackground, }; export type { MenuRegionProps };