import type { ReactNode } from 'react';
export interface IncludedItemProps {
    /** Bold 15px title, e.g. "Montagematerial". */
    title: string;
    /** One short muted line. */
    children: ReactNode;
}
/**
 * Small white rounded tile (`.kwac-included-item`, 18px radius) with a bold
 * title and one muted line. Child of `IncludedGrid`.
 */
export declare function IncludedItem({ title, children }: IncludedItemProps): import("react").JSX.Element;
