export interface Options { /** * What type of components are expected * @default 'svg' */ type?: 'svg' | 'vue' | 'react'; /** * @default 'Gds' */ prefix?: string; } export default function IconsResolver({ type, prefix }?: Options): { type: string; resolve: (icon: string) => { name: string; as: string; from: string; } | undefined; };