/// export interface BannerBaseProps { text: string; duration?: number; onClose?: () => void; } interface StyleProps { color?: string; } interface BannerProps extends BannerBaseProps, StyleProps { } export default function Banner({ text, color, duration, onClose, }: BannerProps): JSX.Element; export {};