import { ColorProps } from '../common/utils'; import { GraphicsProps } from '../graphics/utils'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = { /** * Whether to display the card footer. * Will be enabled automatically when the slot is passed. */ footer?: boolean; /** * Whether to display the card header. * Will be enabled automatically when any header slot is passed. */ header?: boolean; /** * HTML tag for rendering the card. * @default 'article' */ tag?: string; } & ColorProps & GraphicsProps; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ /** * Content of the card title. When a reasonable `type` is specified, the uppercase form of `type` is displayed by default. * Only available if the `header` is `true`. */ title?: (props: {}) => any; /** * Content of the card header after title. * Only available if the `header` is `true`. */ 'header-end'?: (props: {}) => any; /** Content of the card. */ default?: (props: {}) => any; /** * Content of the card footer. * Only available if the `footer` is `true`. */ footer?: (props: {}) => any; }> & { /** * Content of the card title. When a reasonable `type` is specified, the uppercase form of `type` is displayed by default. * Only available if the `header` is `true`. */ title?: (props: {}) => any; /** * Content of the card header after title. * Only available if the `header` is `true`. */ 'header-end'?: (props: {}) => any; /** Content of the card. */ default?: (props: {}) => any; /** * Content of the card footer. * Only available if the `footer` is `true`. */ footer?: (props: {}) => any; }; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };