import React from 'react'; import { SerializedStyles } from '@emotion/react'; import { IconProps, IconSizeProps, IconThemeProps } from '../icons/create-styled-icon'; import { LinkWrapperProps } from '../links/link-wrapper/link-wrapper'; export interface IconListItemProps extends IconProps { onClick?: () => void; title?: string; description?: string; linkProps?: LinkWrapperProps; } export interface IconListProps { children?: React.ReactNode; className?: string; styles?: { root: SerializedStyles | {}; }; list?: IconListItemProps[]; iconProps?: { theme?: IconThemeProps; size?: IconSizeProps; }; } declare const IconList: React.FC; export default IconList;