import type { IconButtonProps } from '@mui/material'; import type { PropsWithChildren } from 'react'; import React from 'react'; import type { FavoriteItemEvent } from '../lib/index.js'; /** Props for {@link FavoriteIconButton}. */ export interface FavoriteIconButtonProps extends PropsWithChildren, IconButtonProps { favorite?: FavoriteItemEvent['favorite']; name?: FavoriteItemEvent['name']; value?: string; valueType?: FavoriteItemEvent['favoriteType']; } /** Icon button that toggles favorites and opens the favorite name popper. */ export declare const FavoriteIconButton: { ({ ref, children, favorite: favoriteProp, name, valueType, value, ...props }: FavoriteIconButtonProps & { ref?: React.RefObject; }): React.JSX.Element; displayName: string; }; //# sourceMappingURL=FavoriteIconButton.d.ts.map