import React from 'react';
import { AccessoryType } from './z_options';
interface AccessoriesProps {
    piece: AccessoryType;
    strokeColor?: string;
    backgroundColor?: string;
}
declare const index: React.FC<AccessoriesProps>;
export default index;
