import type { SvgIconT } from './react-desc-prop-types.js'; interface CreateIconT { paths: SvgIconT.Props['paths']; height: number; width: number; containerProps?: SvgIconT.Props; } export declare const createIcon: ({ containerProps, paths, height, width }: CreateIconT) => (rest: SvgIconT.Props) => import("react/jsx-runtime.js").JSX.Element; export default createIcon;