import { FC, ReactNode } from 'react'; import { BrandColor } from '../foundation/colors/colors'; export type UnorderedListProps = { title?: string; items: ReactNode[]; markerColor?: BrandColor; }; export declare const UnorderedList: FC;