import {SkSVG} from '@shopify/react-native-skia'; import {AvatarsTypes, 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?: AvatarsTypes) => string; /** * Returns the default avatar as a string. * @return {string} The default avatar. * @param {string} [setDefaultAvatar] The default visible avatar. */ declare const createOwnAvatar: (avatarStyle?: AvatarsTypes) => 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 {AvatarsTypes} [selectedStyle] The selected style. * @param {string} [color] The color of the mouth. * @return {Array} The mouth SVG. */ declare const getMouthSvg: (selectedStyle?: AvatarsTypes, color?: string) => Array; /** * Returns the eyes SVG based on the selected style and color. * @param {AvatarsTypes} [selectedStyle] The selected style. * @param {string} [color] The color of the eyes. * @return {Array} The eyes SVG. */ declare const getEyesSvg: (selectedStyle?: AvatarsTypes, color?: string) => Array; /** * Returns the clothing SVG based on the selected style and color. * @param {AvatarsTypes} [selectedStyle] The selected style. * @param {string} [color] The color of the clothing. * @return {Array} The clothing SVG. */ declare const getClothingSvg: (selectedStyle?: AvatarsTypes, color?: string) => Array; /** * Returns the clothing graphic SVG based on the selected style and color. * @param {AvatarsTypes} [selectedStyle] The selected style. * @param {string} [color] The color of the clothing graphics. * @return {Array} The clothing graphics SVG. */ declare const getClothingGraphicsSvg: (selectedStyle?: AvatarsTypes, color?: string) => Array; /** * Returns the accessories SVG based on the selected style and color. * @param {AvatarsTypes} [selectedStyle] The selected style. * @param {string} [color] The color of the accessories. * @return {Array} The accessories SVG. */ declare const getAccessoriesSvg: (selectedStyle?: AvatarsTypes, color?: string) => Array; /** * Returns the eyebrows SVG based on the selected style and color. * @param {AvatarsTypes} [selectedStyle] The selected style. * @param {string} [color] The color of the eyebrows. * @return {Array} The eyebrows SVG. */ declare const getEyeBrowsSvg: (selectedStyle?: AvatarsTypes, color?: string) => Array; /** * Returns the facial hair SVG based on the selected style and color. * @param {AvatarsTypes} [selectedStyle] The selected style. * @param {string} [color] The color of the facial hair. * @return {Array} The facial hai SVG. */ declare const getFacialHair: (selectedStyle?: AvatarsTypes, color?: string) => Array; /** * Returns the top SVG based on the selected style and color. * @param {AvatarsTypes} [selectedStyle] The selected style. * @param {string} [color] The color of the top. * @return {Array} The top SVG. */ declare const getTop: (selectedStyle?: AvatarsTypes, color?: string) => Array; type Options = { Top: (selectedState?: AvatarsTypes) => Array; Eyes: (selectedState?: AvatarsTypes) => Array; Mouth: (selectedState?: AvatarsTypes) => Array; Eyebrows: (selectedState?: AvatarsTypes) => Array; 'Hair Color': (selectedState?: AvatarsTypes) => Array; 'Hat Color': (selectedState?: AvatarsTypes) => Array; 'Facial Hair': (selectedState?: AvatarsTypes) => Array; 'Facial Hair Color': (selectedState?: AvatarsTypes) => Array; Accessories: (selectedState?: AvatarsTypes) => Array; 'Clothing Graphic': (selectedState?: AvatarsTypes) => Array; 'Accessories Color': (selectedState?: AvatarsTypes) => Array; Clothing: (selectedState?: AvatarsTypes) => Array; 'Clothes Color': (selectedState?: AvatarsTypes) => Array; 'Background Color': (selectedState?: AvatarsTypes) => Array; }; export const OPTIONS: Options; export { getDefaultAvatar, getListOfOptions, getSkinTon, AvatarsTypes, getMouthSvg, getEyesSvg, getClothingSvg, getClothingGraphicsSvg, getAccessoriesSvg, getEyeBrowsSvg, getFacialHair, getTop, createOwnAvatar, };