import { Interpolation, Keyframes, Theme } from '@emotion/react'; import { MaterialContentProps } from '../MaterialDescription'; import { MobileMaterialDescription } from '../MobileMaterialDescription'; export declare class WheelDescription

extends MobileMaterialDescription { image?: string; images?: Record; getImage(itemId: ItemId): string | undefined; wheelImage?: string; wheelImages?: Record; getWheelImage(itemId: ItemId): string | undefined; angle: number; angles?: number[]; getAngles(_itemId: ItemId): number[]; getExtraCss(_itemId: ItemId): Interpolation; getWheelExtraCss(_itemId: ItemId): Interpolation; getImages(): string[]; content: (props: MaterialContentProps) => import("@emotion/react/jsx-runtime").JSX.Element; getAnimationCss(keyframes: Keyframes, duration: number): Interpolation; }