import {SkSVG} from '@shopify/react-native-skia'; import {AdventurerNeutralType, Item} from './types.js'; /** * Returns the default avatar as a string. * @return {string} The default avatar. * @param {string} [setDefaultAvatar] The default visible avatar. */ declare const getDefaultAvatar: (setDefaultAvatar?: AdventurerNeutralType) => string; /** * Returns the default avatar as a string. * @return {string} The default avatar. * @param {string} [setDefaultAvatar] The default visible avatar. */ declare const createOwnAvatar: (avatarStyle?: AdventurerNeutralType) => SkSVG; /** * Returns a list of options as an array of strings. * @return {Array} The list of options. */ declare const getListOfOptions: () => Array; /** * Returns the skin tone as an array of strings. * @return {Array} The skin tone. */ declare const getSkinTon: () => Array; /** * Returns the mouth SVG based on the selected style and color. * @param {AdventurerNeutralType} [selectedStyle] The selected style. * @param {string} [color] The color of the mouth. * @return {Array} The mouth SVG. */ declare const getMouthSvg: (selectedStyle?: AdventurerNeutralType, color?: string) => Array; /** * Returns the eyes SVG based on the selected style and color. * @param {AdventurerNeutralType} [selectedStyle] The selected style. * @param {string} [color] The color of the eyes. * @return {Array} The eyes SVG. */ declare const getEyesSvg: (selectedStyle?: AdventurerNeutralType, color?: string) => Array; /** * Returns the eyebrows SVG based on the selected style and color. * @param {AdventurerNeutralType} [selectedStyle] The selected style. * @param {string} [color] The color of the eyebrows. * @return {Array} The eyebrows SVG. */ declare const getEyeBrowsSvg: (selectedStyle?: AdventurerNeutralType, color?: string) => Array; type Options = { Eyes: (selectedState?: AdventurerNeutralType) => Array; Mouth: (selectedState?: AdventurerNeutralType) => Array; Eyebrows: (selectedState?: AdventurerNeutralType) => Array; Glasses: (selectedState?: AdventurerNeutralType) => Array; 'Background Color': (selectedState?: Array) => Array; }; export const OPTIONS: Options; export {getDefaultAvatar, getListOfOptions, getSkinTon, AdventurerNeutralType, getMouthSvg, getEyesSvg, getEyeBrowsSvg, getFacialHair, createOwnAvatar};