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