import { HTMLProps, PropsWithChildren } from 'react';
export type CardContentProps = PropsWithChildren, 'ref'> & {
/**
* Remove horizontal padding
*/
noHorizontalPadding?: boolean;
scrollable?: boolean;
}>;
export declare const CardContent: ({ children, className, noHorizontalPadding, scrollable, ...rest }: CardContentProps) => JSX.Element;