// Project: https://github.com/vueComponent/ui-vue-antd-test // Definitions by: akki-jat // Definitions: https://github.com/vueComponent/ui-vue-antd-test/types import { AntdComponent } from '../component'; import { Meta } from '../meta'; export declare class ListItem extends AntdComponent { static Meta: Meta; /** * The actions content of list item. If itemLayout is vertical, shows the content on bottom, * otherwise shows content on the far right. * @type any (VNode[] | slot) */ actions: any; /** * The extra content of list item. If itemLayout is vertical, shows the content on right, * otherwise shows content on the far right. * @type any (string | slot) */ extra: any; }