import { FC, HTMLAttributes, ElementType } from 'react';
export interface CardSignatureProps extends HTMLAttributes<HTMLElement> {
    /** Utilizzarlo in caso di utilizzo di componenti personalizzati */
    tag?: ElementType;
    /** Classi aggiuntive da usare per il componente CardSignature*/
    className?: string;
    testId?: string;
}
export declare const CardSignature: FC<CardSignatureProps>;
