import * as React from 'react'; import { CSSProperties, HTMLAttributes } from 'react'; export type Props = { color?: string; size?: number; style?: CSSProperties; } & HTMLAttributes; export declare function ShopSvgIcon({ color, size, style, ...props }: Props): React.JSX.Element;