import * as React from 'react'; export interface FavoritesCellProps { id?: string; className?: string; onFavorite?: (event: React.MouseEvent) => void; isFavorited?: boolean; rowIndex?: number; } export declare const FavoritesCell: React.FunctionComponent; //# sourceMappingURL=FavoritesCell.d.ts.map