declare const iconList: Record; export type IconName = keyof typeof iconList; export declare const loadIcon: (name: IconName) => Promise; export declare function isBundledIcon(name: string): name is IconName; export declare const allIcons: string[]; export interface SVGRProps { title?: string; titleId?: string; } export {};