import { IconSet } from '@iconify/tools'; import { CalcWritableIconSetBaseOptions } from './writable-icon-set'; export interface WriteIconSetOptions extends Pick { prevIconSet: IconSet | null; writeIconSet: IconSet; addedIconNames: string[]; removedIconNames: string[]; targetIconsJsonDir: string; targetIconsJsonPath: string; } export declare function writeIconSet(options: WriteIconSetOptions): boolean; //# sourceMappingURL=write-icon-set.d.ts.map