import { IllustrationMapping } from '../Icons'; export type InfoHeaderWithIllustrationProps = { boldText: string; smallInfoText: string; illustration: keyof IllustrationMapping; buttonAction: { action: () => void; label: string; }; }; export declare const InfoHeaderWithIllustration: (props: InfoHeaderWithIllustrationProps) => import("react/jsx-runtime").JSX.Element;