import * as React from "react"; import { IconProps } from "../IconBase"; import { ViewProps } from "../View"; export interface ULProps extends ViewProps { iconName?: never; icon?: React.ComponentType; iconColor?: string; fontSize?: number; } declare const UL: React.SFC; export default UL;