import type { CardContentProps } from '@mui/material'; import React from 'react'; /** Props for {@link CardContentEx}. */ export type CardContentExProps = CardContentProps & { refreshRef?: number; removePadding?: boolean; scrollToTop?: number; variant?: 'scrollable' | 'normal'; }; /** Extended card content that supports scrollable variants and programmatic scroll-to-top. */ export declare const CardContentExWithRef: { ({ ref, scrollToTop, refreshRef, ...props }: CardContentExProps & { ref?: React.RefObject; }): React.JSX.Element; displayName: string; }; /** Extended card content that supports scrollable variants and programmatic scroll-to-top. */ export declare const CardContentEx: { ({ ref, scrollToTop, refreshRef, ...props }: CardContentExProps & { ref?: React.RefObject; }): React.JSX.Element; displayName: string; }; //# sourceMappingURL=CardContentEx.d.ts.map