import { HTMLAttributes, StyleValue } from 'vue'; import { MazColor } from './types'; export interface MazCardSpotlightProps { /** * The color of the component. * @default primary */ color?: MazColor; /** * Add elevation to the component * @default true */ elevation?: boolean; /** * Add padding to the content * @default true */ padding?: boolean; /** * The classes to apply to the content div */ contentClass?: HTMLAttributes['class']; /** * Style apply to the content div */ contentStyle?: StyleValue; /** * The opacity of the inner div - should be between 0 and 1 * When 0 the spotlight is completely visible * When 1 the spotlight is only visible on borders * @default 0.95 */ innerOpacity?: number; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: { containerElement: HTMLDivElement; blobElement: HTMLDivElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { containerElement: HTMLDivElement; blobElement: HTMLDivElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };