import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue'; import { DialogSize } from './type'; interface YcDialogInternalProps { /** 对话框宽度 */ width?: string | number; /** 预设尺寸 */ size?: DialogSize; /** 整个对话框最大高度,默认 720px,设置为 false 则不限制(使用默认的 90vh) */ maxHeight?: string | number | false; /** 是否显示标题底部边框,默认 true */ showHeaderBorder?: boolean; } declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { maxHeight: string; showHeaderBorder: boolean; }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { maxHeight: string; showHeaderBorder: boolean; }>>>, { maxHeight: string | number | false; showHeaderBorder: boolean; }, {}>, { header?(_: {}): any; default?(_: {}): any; footer?(_: {}): any; }>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };