import { FormattedBlock } from './utils';
export interface BlockInsight {
    icon: string;
    title: string;
    description: string;
}
/**
 *
 * @param {FormattedBlock} blockData
 * @returns {BlockInsight[]}
 */
export declare function generateBlockInsights(blockData: FormattedBlock): BlockInsight[];
