import { type ButtonHTMLAttributes, type HTMLAttributes, type ReactNode } from 'react'; import { type CssLength } from '../../../utils/css'; export type BellIlluminePageProps = Omit, 'children' | 'onChange' | 'title'> & { ariaLabel?: string; bellLabel?: string; buttonLabel?: ReactNode; defaultIlluminated?: boolean; illuminated?: boolean; minHeight?: CssLength; notificationButtonProps?: Omit, 'children' | 'type'>; offBellLabel?: string; onIlluminatedChange?: (illuminated: boolean) => void; showGrain?: boolean; size?: CssLength; baseColor?: string; }; export declare const BellIlluminePage: ({ ariaLabel, bellLabel, buttonLabel, defaultIlluminated, illuminated, minHeight, notificationButtonProps, offBellLabel, onIlluminatedChange, showGrain, size, baseColor, className, style, ...props }: BellIlluminePageProps) => import("react/jsx-runtime").JSX.Element;