import { IconSvgProps } from './IconSvg/IconSvg';
type IconConfigs = {
    [index: string]: IconSvgProps;
};
export type IconListProps = {
    iconConfigs: IconConfigs;
    iconNames: string[];
    commonIconProps?: Omit<IconSvgProps, 'icon'>;
    useTheme?: boolean;
    useBackground?: boolean;
};
declare function IconList(props: IconListProps): import("react/jsx-runtime").JSX.Element;
export default IconList;
//# sourceMappingURL=IconList.d.ts.map