import * as React from 'react'; import { ButtonWithAsProp } from '../Button'; import {PropsWithChildren} from "react"; export type FillPreviewProps = ButtonWithAsProp<{ fill?: React.ReactNode; selected?: boolean; onClick?: React.MouseEventHandler; disabled?: boolean; tabIndex?: number; aspectRatio?: string | number; dataHook?: string; className?: string; }>; export default class FillPreview extends React.Component> {}