import { VNode } from 'vue';
import { EntryItemEvents, EntryItemProps } from './types';
import { BadgeProps } from '../Badge';
export declare const entryItemProps: {
    icon: import("vue").PropOptions<string | import("@ohu-mobile/icons/lib/types").SVGIconDef | undefined>;
    image: StringConstructor;
    iconSize: StringConstructor;
    iconAreaSize: import("vue").PropOptions<"sm" | "md" | "lg">;
    text: StringConstructor;
    textSize: import("vue").PropOptions<"sm" | "md" | "lg" | "xsm">;
    minorText: StringConstructor;
    to: import("vue").PropOptions<string | object | undefined>;
    url: StringConstructor;
    replace: import("vue").PropOptions<boolean>;
    badge: import("vue").PropOptions<string | number | BadgeProps | undefined>;
};
declare const _default: import("vue-tsx-support")._TsxComponentV3<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>> & import("../_utils/defineComponent").OhuComponentInnerProps & {
    onClick(e: Event): void;
    wrapBadge(vnode: VNode[] | VNode | string): VueTsxSupport.JSX.Element | undefined;
} & {
    icon: string | import("@ohu-mobile/icons/lib/types").SVGIconDef | undefined;
    image: string;
    iconSize: string;
    iconAreaSize: "sm" | "md" | "lg";
    text: string;
    textSize: "sm" | "md" | "lg" | "xsm";
    minorText: string;
    to: string | object | undefined;
    url: string;
    replace: boolean;
    badge: string | number | BadgeProps | undefined;
}, {}, {} & {
    replace?: boolean | undefined;
    icon?: string | import("@ohu-mobile/icons/lib/types").SVGIconDef | undefined;
    to?: string | object | undefined;
    url?: string | undefined;
    image?: string | undefined;
    text?: string | undefined;
    badge?: string | number | BadgeProps | undefined;
    textSize?: "sm" | "md" | "lg" | "xsm" | undefined;
    minorText?: string | undefined;
    iconSize?: string | undefined;
    iconAreaSize?: "sm" | "md" | "lg" | undefined;
} & EntryItemProps, EntryItemEvents, {}, {}>;
export default _default;
