import type { AvatarStyle } from "../types"; export { AvatarStyle } from "../types"; export interface Props { pieceSize?: string; pieceType?: string; avatarStyle: AvatarStyle; style?: React.CSSProperties; viewBox?: string; } export default function PieceComponent({ pieceSize, pieceType, style, viewBox, }: Props): import("react/jsx-runtime").JSX.Element;