import type { ExtractPropTypes, PropType, CSSProperties, Component } from 'vue'; import type _Card from './card.vue'; declare type ActionItem = { key: string; icon?: Component; text?: string; }; export declare const sdCardProps: { readonly title: { readonly type: StringConstructor; }; readonly subTitle: { readonly type: StringConstructor; }; readonly tooltip: { readonly type: StringConstructor; }; readonly extra: { readonly type: StringConstructor; }; readonly shadow: { readonly type: PropType<"hover" | "always" | "never">; readonly default: "never"; }; readonly headerClass: { readonly type: StringConstructor; readonly default: ""; }; readonly headerStyle: { readonly type: PropType; }; readonly headerBordered: { readonly type: BooleanConstructor; readonly default: false; }; readonly bordered: { readonly type: BooleanConstructor; readonly default: false; }; readonly ghost: { readonly type: BooleanConstructor; readonly default: false; }; readonly gutter: { readonly type: PropType; }; readonly group: { readonly type: BooleanConstructor; readonly default: false; }; readonly colSpan: { readonly type: PropType; readonly default: 24; }; readonly split: { readonly type: PropType<"horizontal" | "vertical">; }; readonly direction: { readonly type: PropType<"row" | "column">; }; readonly wrap: { readonly type: BooleanConstructor; readonly default: false; }; readonly contentCenter: { readonly type: BooleanConstructor; readonly default: false; }; readonly height: { readonly type: PropType; }; readonly maxHeight: { readonly type: PropType; }; readonly bodyClass: { readonly type: StringConstructor; readonly default: ""; }; readonly bodyStyle: { readonly type: PropType; }; readonly showEmpty: { readonly type: BooleanConstructor; readonly default: false; }; readonly emptyText: { readonly type: StringConstructor; readonly default: "暂无数据"; }; readonly actionsBordered: { readonly type: BooleanConstructor; readonly default: true; }; readonly actions: { readonly type: PropType; readonly default: () => never[]; }; }; export declare type SdCardProps = ExtractPropTypes; export declare type SdCardInstance = InstanceType; export {};