import { ElTextCellColor, ElTextCellStyle } from './ElTextCell.vue'; import { ElIconProps } from './ElIcon.vue'; import { ElTagColor } from './ElTag.vue'; export interface ElListItemProps { avatar?: { picture: string; label?: string; } | { picture?: string; label: string; }; time?: string; mainText: { label: string; style?: ElTextCellStyle; color?: ElTextCellColor; }; secondaryRow?: string; tertiaryRow?: string; trailingIcon?: ElIconProps; amount?: string; tags?: { key?: string; text: string; color?: ElTagColor; }[]; modelValue?: boolean; color: 'primary' | 'secondary'; } declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (checked: boolean | undefined) => void; click: (payload: MouseEvent) => void; }, string, import('vue').PublicProps, Readonly>> & { onClick?: ((payload: MouseEvent) => any) | undefined; "onUpdate:modelValue"?: ((checked: boolean | undefined) => any) | undefined; }, {}, {}>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; };