import { ForwardRefExoticComponent, RefAttributes, ComponentProps, ReactNode } from 'react'; import { MenuRoot } from '@base-ui/react'; type HeadingElement = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; declare const Card: ForwardRefExoticComponent & RefAttributes>; declare const CardHeaderStart: ForwardRefExoticComponent & RefAttributes>; declare const CardTitle: ForwardRefExoticComponent & { as?: HeadingElement; }, 'ref'> & RefAttributes>; declare const CardDescription: ForwardRefExoticComponent & RefAttributes>; declare const CardHeaderEnd: ForwardRefExoticComponent & RefAttributes>; declare const CardHeader: ForwardRefExoticComponent & RefAttributes>; declare const CardHeaderCenter: ForwardRefExoticComponent & RefAttributes>; declare const CardActions: ForwardRefExoticComponent, 'children'> & { children?: ReactNode; align?: 'start' | 'center' | 'end'; } & RefAttributes>; declare const CardContent: ForwardRefExoticComponent & RefAttributes>; declare const CardFooter: ForwardRefExoticComponent & RefAttributes>; declare const CardFooterStart: ForwardRefExoticComponent & RefAttributes>; declare const CardFooterEnd: ForwardRefExoticComponent & RefAttributes>; export { Card, CardHeader, CardHeaderCenter, CardHeaderStart, CardHeaderEnd, CardFooter, CardFooterStart, CardFooterEnd, CardTitle, CardActions, CardDescription, CardContent, };