import * as React from "react"; export type IconProps = React.SVGProps & { size?: number | string; strokeWidth?: number | string; }; export declare function createIcon(displayName: string, children: React.ReactNode, options?: { defaultSize?: number; }): { ({ className, size, strokeWidth, ...props }: IconProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; //# sourceMappingURL=icon.d.ts.map