///
import { Button } from '../button';
declare type Picture = Readonly<{
url: string;
alt: string;
}>;
declare type Link = Readonly<{
label: string;
url: string;
}>;
declare type Button = Readonly<{
label: string;
onClick: () => void;
}>;
declare type CTALinks = Array;
declare type CTAButtons = Array