import { Component } from '../../types/Component';
import { ProcessedSection } from '../../types/Section';
/**
 * Get all components in all sections
 *
 * @param {array} sections
 */
export default function getComponentsFromSections(sections: ProcessedSection[]): Component[];
