export interface Options { /** * @default 'Gds' */ prefix?: string; } export default function IconsResolver({ prefix }?: Options): { readonly type: "component"; readonly resolve: (icon: string) => { name: string; as: string; from: string; } | undefined; };