/** * Do not change this file manually! This file was generated with the "Dicebear Exporter"-Plugin for Figma. * * Plugin: https://www.figma.com/community/plugin/1005765655729342787 * File: https://www.figma.com/file/sNI8OuD41VSfu5Gfl3eprv */ import type { Prng } from '@dicebear/core'; import type { ComponentPick } from '../types.js'; type Props = { prng: Prng; group: string; values?: string[]; width: number; height: number; rotation: number[]; offsetX: number[]; offsetY: number[]; }; export declare function pickComponent({ prng, group, width, height, values, rotation, offsetX, offsetY, }: Props): ComponentPick; export {};