import React from 'react';
export type BannerProps = {
    title: string;
    subtitle: string;
    backgroundColor: string;
    actionText?: string;
    onClick?: React.MouseEventHandler<HTMLElement>;
    imgUrl?: string;
    invertText?: boolean;
    id?: string;
    size?: 'small' | 'medium';
};
export declare const Banner: React.FC<BannerProps>;
//# sourceMappingURL=banner.d.ts.map