export interface PropsContainerTableRow { /** * 属性名 */ prop: string; /** * 类型 */ type: string; /** * 默认值 */ default: string; /** * 是否必须 */ required: boolean; /** * 是否是双向绑定属性 */ isMember: boolean; /** * 描述 */ description: string; /** * 链接 */ link: string; } export declare function getPropsContainerTableData(options: { path?: string; source?: string; }): PropsContainerTableRow[];