import fillIcons from '../assets/icons/fill'; import { imageIconSrcSet } from '../assets/icons/image'; import lineIcons from '../assets/icons/line'; export type FillIconNameKeys = keyof typeof fillIcons; export type LineIconNameKeys = keyof typeof lineIcons; export type ImageIconNameKeys = keyof typeof imageIconSrcSet; export type PDSIconType = FillIconNameKeys | LineIconNameKeys | ImageIconNameKeys; export declare const fillIconkeys: string[]; export declare const lineIconkeys: string[]; export declare const imageIconKeys: string[];