import type { QCardProps } from 'quasar'; export interface LCardProps extends QCardProps { loading?: boolean; title?: string; /** * Permission to access this card, if not granted, the card will not be shown, if the user is admin, a lock icon will be shown to allow the user to grant the permission */ permission?: string; closeable?: boolean; minimizable?: boolean; maximizable?: boolean; name?: string; } type __VLS_Props = LCardProps; type __VLS_ModelProps = { "minimized"?: boolean; "maximized"?: boolean; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare var __VLS_19: {}, __VLS_79: {}; type __VLS_Slots = {} & { actions?: (props: typeof __VLS_19) => any; } & { default?: (props: typeof __VLS_79) => any; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { close: (...args: any[]) => void; "update:minimized": (value: boolean) => void; "update:maximized": (value: boolean) => void; }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onClose?: ((...args: any[]) => any) | undefined; "onUpdate:minimized"?: ((value: boolean) => any) | undefined; "onUpdate:maximized"?: ((value: boolean) => any) | undefined; }>, { flat: boolean; square: boolean; bordered: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };