import { ElementType, FC, PropsWithChildren } from 'react';
export interface CalloutMoreFooterProps {
    id?: string;
    /** Utilizzarlo in caso si utilizzo di componenti personalizzati */
    tag?: ElementType;
    /** Classi aggiuntive da usare per il componente */
    className?: string;
    fileUrl?: string;
}
export declare const CalloutMoreFooter: FC<PropsWithChildren<CalloutMoreFooterProps>>;
