import { ComponentOptionsMixin } from 'vue'; import { ComponentProvideOptions } from 'vue'; import { ComputedRef } from 'vue'; import { DefineComponent } from 'vue'; import { ExtractPropTypes } from 'vue'; import { InjectionKey } from 'vue'; import { PropType } from 'vue'; import { PublicProps } from 'vue'; declare type __VLS_NonUndefinedable = T extends undefined ? never : T; declare type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; declare type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; declare type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; declare type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; declare interface BoxProps { /** * Remove the padding around the entire Box. */ disablePadding?: boolean; /** * Remove the padding on the left and right of the Box. */ disableGutters?: boolean; /** * Remove the padding on the left and right of the Box. */ disableElevation?: boolean; /** * Border radius style. Defaults to `rounded`. */ radius?: 'none' | 'rounded'; } declare const _default: __VLS_WithTemplateSlots, { variant: string; includeDataviewPagination: boolean; }>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly, { variant: string; includeDataviewPagination: boolean; }>>> & Readonly<{}>, { variant: "table" | "list" | "box" | "card"; includeDataviewPagination: boolean; }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, { default?(_: {}): any; }>; export default _default; declare interface Injection { key: InjectionKey; } declare interface InjectionWithDefaults extends Injection { defaults: T; } export declare const MODULE_INJECTION: InjectionWithDefaults; export declare interface ModuleInjection { /** * Module variant applied. */ variant?: ComputedRef; includeDataviewPagination?: ComputedRef; } export declare interface ModuleProps extends BoxProps { /** * Variant applied. * * Options: `box`, `card`, `list`. */ variant?: ModuleVariants; /** * Whether to include dataview pagination within the module. * By default the bottom pagination is not included. */ includeDataviewPagination?: boolean; } export declare enum ModuleVariant { Box = "box", Table = "table", /** * @deprecated Card Modules are no longer a thing. You're probably looking for ``. */ Card = "card", /** * @deprecated Only used with deprecated ListView component. Use `table` variant with `Table` component instead. */ List = "list" } export declare type ModuleVariants = `${ModuleVariant}`; export { }