import { TexturedDeckValue } from '../../composables/useTexturedDeck'; export interface TexturedDeckProps { /** * Name of the texture file ('silk', 'brick', 'rock', 'sand', 'crack', 'carbon') */ modelValue?: TexturedDeckValue; /** * CSS background-size property (cover, contain, auto, 50%, 50% auto, ...) */ size?: string; /** * Tag/Component to use as root tag. */ tag?: string | object; /** * Either or note we should use the black version of the texture */ black?: boolean; /** * Host where to find the textures (without tailing slash) */ backgroundBaseUrl?: string; } declare var __VLS_8: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_8) => any; }; declare const __VLS_base: import('../../../node_modules/vue').DefineComponent & Readonly<{}>, { black: boolean; tag: string | object; size: string; modelValue: TexturedDeckValue; backgroundBaseUrl: string; }, {}, {}, {}, string, import('../../../node_modules/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; }; };