import { ReactNode, JSX, HTMLAttributes } from 'react';
export interface CardGradientProps extends HTMLAttributes {
heading: string | ReactNode;
content: string | undefined;
action: string;
target?: string;
disabled?: boolean;
className?: string;
children?: ReactNode;
}
export declare const CardGradient: ({ heading, content, action, target, disabled, className, ...props }: CardGradientProps) => JSX.Element;
//# sourceMappingURL=card-gradient.d.ts.map