import { type FocusEventHandler, type KeyboardEventHandler, type MouseEvent, type MouseEventHandler } from "react"; import { type StarIconContainerProps } from "./StarIconContainer"; export interface FavoriteToggleProps extends Omit { onBlur?: FocusEventHandler; onChange?: (isSelected: boolean) => void; onClick?: (event: MouseEvent) => void; onFocus?: FocusEventHandler; onKeyDown?: KeyboardEventHandler; onMouseEnter?: MouseEventHandler; onMouseLeave?: MouseEventHandler; } export declare const FavoriteToggle: import("react").ForwardRefExoticComponent>;