import { Interpolation, Theme } from '@emotion/react'; import { FC } from 'react'; import { ComponentSize } from '../ComponentDescription'; import { MaterialContentProps } from '../MaterialDescription'; export type WheelItemProps = { size: ComponentSize; image?: string; wheelImage?: string; borderRadius?: number; extraCss?: Interpolation; wheelExtraCss?: Interpolation; angles: number[]; } & MaterialContentProps; export declare const WheelItem: FC;