import {SkSVG} from '@shopify/react-native-skia'; import {CroodlesTypes, 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?: CroodlesTypes) => string; /** Returns a custom SVG for creating a user's own avatar. @param {string} [avatarStyle] The selected style for the avatar. @return {SkSVG} The custom SVG for the avatar. */ declare const createOwnAvatar: (avatarStyle?: CroodlesTypes) => SkSVG; /** Returns a list of options as an array of strings. @return {Array} The list of options. */ declare const getListOfOptions: () => Array; /** Returns the mouth SVG based on the selected style and color. @param {CroodlesTypes} [selectedStyle] The selected style. @param {string} [color] The color of the mouth. @return {Array} The mouth SVG. */ declare const getMouthSvg: (selectedStyle?: CroodlesTypes, color?: string) => Array; /** Returns the eyes SVG based on the selected style and color. @param {CroodlesTypes} [selectedStyle] The selected style. @param {string} [color] The color of the eyes. @return {Array} The eyes SVG. */ declare const getEyesSvg: (selectedStyle?: CroodlesTypes, color?: string) => Array; /** Returns the beard SVG based on the selected style and color. @param {CroodlesTypes} [selectedStyle] The selected style. @param {string} [color] The color of the beard. @return {Array} The beard SVG. */ declare const getBeardSvg: (selectedStyle?: CroodlesTypes, color?: string) => Array; /** * Returns the top SVG based on the selected style and color. * @param {CroodlesTypes} [selectedStyle] The selected style. * @param {string} [color] The color of the hair. * @return {Array} The mouth SVG. */ declare const getHair: (selectedStyle?: CroodlesTypes, color?: string) => Array; /** * Returns the top SVG based on the selected style and color. * @param {CroodlesTypes} [selectedStyle] The selected style. * @param {string} [color] The color of the head. * @return {Array} The mouth SVG. */ declare const getFaceSvg: (selectedStyle?: CroodlesTypes, color?: string) => Array; /** * Returns the top SVG based on the selected style and color. * @param {CroodlesTypes} [selectedStyle] The selected style. * @param {string} [color] The color of the head. * @return {Array} The mouth SVG. */ declare const getMustachesSvg: (selectedStyle?: CroodlesTypes, color?: string) => Array; /** * Returns the top SVG based on the selected style and color. * @param {CroodlesTypes} [selectedStyle] The selected style. * @param {string} [color] The color of the head. * @return {Array} The mouth SVG. */ declare const getTopSvg: (selectedStyle?: CroodlesTypes, color?: string) => Array; /** * Returns the top SVG based on the selected style and color. * @param {CroodlesTypes} [selectedStyle] The selected style. * @param {string} [color] The color of the head. * @return {Array} The mouth SVG. */ declare const getHairColor: (selectedStyle?: CroodlesTypes, color?: string) => Array; type Options = { Mouth: (selectedState?: CroodlesTypes) => Array; Nose: (selectedState?: CroodlesTypes) => Array; Eyes: (selectedState?: CroodlesTypes) => Array; Hair: (selectedState?: CroodlesTypes) => Array; "Top Color" : (selectedState?: CroodlesTypes) => Array; Beard: (selectedState?: CroodlesTypes) => Array; Face : (selectedState?: CroodlesTypes) => Array; Mustache : (selectedState?: CroodlesTypes) => Array; Top : (selectedState?: CroodlesTypes) => Array; "Background Color" : (selectedState?: CroodlesTypes) => Array; }; export const OPTIONS: Options; export { getDefaultAvatar, getListOfOptions, getMouthSvg, getEyesSvg, createOwnAvatar, getBeardSvg, getHair, getFaceSvg, getMustachesSvg, getTopSvg, getHairColor, CroodlesTypes, };