import type { CardProps } from '@mui/material'; import React from 'react'; /** Props for {@link CardEx}. */ export interface CardExProps extends CardProps { gradient?: 'border' | 'background'; } /** Card component that optionally applies a gradient border or background style. */ export declare const CardExWithRef: { ({ ref, style, gradient, ...props }: CardExProps): React.JSX.Element; displayName: string; }; /** Card component that optionally applies a gradient border or background style. */ export declare const CardEx: { ({ ref, style, gradient, ...props }: CardExProps): React.JSX.Element; displayName: string; }; //# sourceMappingURL=CardEx.d.ts.map