export interface HeaderProps {
    imageSrc: string;
    imageAlt: string;
    title: string;
    buttons: Button[];
}
interface Button {
    label: string;
    link: string;
}
export {};
