///
import { ItemChoiceProps } from '../../../itemChoice';
export declare type HighlightItemsType = ItemChoiceProps & Readonly<{
hidden?: boolean;
}>;
export declare type HighlightsType = {
heading: string;
items: Array;
};
export declare type HighlightSectionProps = Readonly<{
className?: string;
highlights: {
featured: HighlightsType;
optional?: HighlightsType;
};
toggle: {
on: string;
off: string;
};
}>;
export declare const HighlightSection: ({ highlights, toggle, className }: HighlightSectionProps) => JSX.Element;