| 1234567891011121314151617181920212223242526 |
- import type { ExtractPropTypes } from 'vue';
- import type { CustomSlotsType } from '../_util/type';
- export declare const listItemMetaProps: () => {
- avatar: import("vue-types").VueTypeValidableDef<any>;
- description: import("vue-types").VueTypeValidableDef<any>;
- prefixCls: StringConstructor;
- title: import("vue-types").VueTypeValidableDef<any>;
- };
- export type ListItemMetaProps = Partial<ExtractPropTypes<ReturnType<typeof listItemMetaProps>>>;
- declare const _default: import("vue").DefineComponent<{
- avatar: import("vue-types").VueTypeValidableDef<any>;
- description: import("vue-types").VueTypeValidableDef<any>;
- prefixCls: StringConstructor;
- title: import("vue-types").VueTypeValidableDef<any>;
- }, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ExtractPropTypes<{
- avatar: import("vue-types").VueTypeValidableDef<any>;
- description: import("vue-types").VueTypeValidableDef<any>;
- prefixCls: StringConstructor;
- title: import("vue-types").VueTypeValidableDef<any>;
- }>>, {}, CustomSlotsType<{
- avatar: any;
- description: any;
- title: any;
- default: any;
- }>>;
- export default _default;
|