import { HTMLProps, PropsWithChildren } from 'react'; export type CardContentProps = PropsWithChildren, 'ref'> & { /** * Remove horizontal padding */ noHorizontalPadding?: boolean; /** * Render content as scrollable */ scrollable?: boolean; }>; export declare const CardContent: (props: Omit, "ref"> & { /** * Remove horizontal padding */ noHorizontalPadding?: boolean | undefined; /** * Render content as scrollable */ scrollable?: boolean | undefined; } & { children?: import("react").ReactNode; } & import("react").RefAttributes) => import("react").ReactElement> | null;