import { type ButtonHTMLAttributes, type Ref } from 'react'; export type SpecialAnnouncementButtonProps = ButtonHTMLAttributes & { ref?: Ref; }; export declare const SpecialAnnouncementButton: ({ children, className, ref, type, ...props }: SpecialAnnouncementButtonProps) => import("react/jsx-runtime").JSX.Element;