import { default as React } from 'react'; export type WhatIsProps = { image: string; title: string; label?: string; description: string; }; export declare const WhatIs: ({ image, title, label, description }: WhatIsProps) => React.JSX.Element;