import React from 'react'; import type { ComponentProps, SlotComponentPropsWithoutOverride } from '../components.ts'; interface SlotProps { root?: SlotComponentPropsWithoutOverride<'div'>; } export type CardProps = ComponentProps; export declare function Card({ children, 'data-testid': testId, disableDefaultClasses, slotProps: givenSlotProps, ...rest }: CardProps): import("react/jsx-runtime").JSX.Element; interface CardTitleSlotProps { root?: SlotComponentPropsWithoutOverride<'h1'>; } export type CardTitleProps = ComponentProps; export declare function CardTitle({ 'data-testid': testId, disableDefaultClasses, slot, slotProps: givenSlotProps, ...rest }: CardTitleProps): React.ReactElement<{}, string | React.JSXElementConstructor>; export {};