import { type HTMLAttributes, type ReactNode, type Ref } from 'react';
type DynamicIslandBannerProps = Omit, 'children' | 'color'> & {
children?: ReactNode;
fillColor?: string;
fillHotColor?: string;
glowColor?: string;
ref?: Ref;
strokeColor?: string;
textColor?: string;
};
declare const DynamicIslandBanner: ({ children, className, fillColor, fillHotColor, glowColor, ref, strokeColor, style, textColor, ...props }: DynamicIslandBannerProps) => import("react/jsx-runtime").JSX.Element;
export { DynamicIslandBanner };
export type { DynamicIslandBannerProps };