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