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