astro-ghostcms/.pnpm-store/v3/files/55/5493db96efbd7c6f4cb4edf9e68...

10 lines
521 B
Plaintext

import { Awaitable } from '@antfu/utils';
import { IconifyLoaderOptions } from './types.js';
import '../customisations/defaults.js';
import '@iconify/types';
declare function mergeIconProps(svg: string, collection: string, icon: string, options?: IconifyLoaderOptions, propsProvider?: () => Awaitable<Record<string, string>>, afterCustomizations?: (props: Record<string, string>) => void): Promise<string>;
declare function getPossibleIconNames(icon: string): string[];
export { getPossibleIconNames, mergeIconProps };