import React from 'react';
import { IconSvgOptions } from './IconSvg';
export declare type IconListProps = {
    iconConfigs: {
        [index: string]: IconSvgOptions;
    };
    iconNames: string[];
    useTheme?: boolean;
    useBackground?: boolean;
};
declare const IconList: React.FunctionComponent<IconListProps>;
export default IconList;
