import { FlexProps, IconOptions, LayoutType } from '@20minutes/hela'; import { default as React } from 'react'; export interface InfoLineProps extends FlexProps { infosContent: { iconOptions: IconOptions; title: string; information?: string; rating?: number; }[]; layout?: LayoutType; } export declare const InfoLine: React.FC;