import type { ExtractPropTypes, PropType, StyleValue, Component } from 'vue'; import type _TitleBar from './title-bar.vue'; export declare const sdTitleBarProps: { type: { type: PropType<"primary" | "success" | "warning" | "info" | "danger" | "error">; default: string; }; icon: { type: PropType>; }; iconColor: { type: StringConstructor; }; iconSize: { type: NumberConstructor; }; title: { type: StringConstructor; default: string; }; subTitle: { type: StringConstructor; default: string; }; desc: { type: StringConstructor; default: string; }; arrow: { type: BooleanConstructor; default: boolean; }; headClass: { type: StringConstructor; }; headStyle: { type: PropType; }; bodyClass: { type: StringConstructor; }; bodyStyle: { type: PropType; }; }; export declare type SdTitleBarProps = ExtractPropTypes; export declare type SdTitleBarInstance = InstanceType;