import { AvatarProps } from "../../navigation/Avatar"; export type FeedTileProps = Readonly<{ label?: string; variant?: "default" | "stack" | "tag"; previewUrl?: string; icon?: React.ComponentType>; aspectRatio?: string; previewFit?: "contain" | "cover" | "fill"; constrain?: "height" | "width"; showLabel?: boolean; showCheckerboard?: boolean; showProBadge?: boolean; labelClassName?: string; customBadge?: React.ReactNode; avatar?: Pick; loading?: boolean; onLoad?: () => void; error?: React.ReactNode; backgroundClassName?: string; }> & React.ComponentPropsWithoutRef<"button">; export declare const FeedTile: ({ variant, label, previewUrl, icon: Icon, aspectRatio, previewFit, constrain, showLabel, showCheckerboard, showProBadge, labelClassName, customBadge, avatar, loading, onLoad, error, children, backgroundClassName, ...buttonProps }: FeedTileProps) => import("react").JSX.Element; //# sourceMappingURL=FeedTile.d.ts.map