/// declare type ImageSectionProps = Readonly<{ heading: string; items: string[]; sprite?: string; spriteOnLeft?: boolean; headingClassName?: string; }>; export default function ImageSection({ heading, items, sprite, headingClassName, spriteOnLeft, }: ImageSectionProps): JSX.Element; export {};