UNPKG

@qvant/qui-max

Version:

A Vue 3 Design system for Web.

40 lines (39 loc) 1.45 kB
import type { QRowPropAlignV, QRowPropAlignH, QRowInstance } from './src/types'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { SFCWithInstall, Nullable } from '../../../types/helpers'; export declare const QRow: SFCWithInstall<DefineComponent<{ tag: { type: StringConstructor; default: string; }; alignV: { type: PropType<QRowPropAlignV>; default: null; validator: (value: Nullable<QRowPropAlignV>) => boolean; }; alignH: { type: PropType<QRowPropAlignH>; default: null; validator: (value: Nullable<QRowPropAlignH>) => boolean; }; }, QRowInstance, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{ tag: { type: StringConstructor; default: string; }; alignV: { type: PropType<QRowPropAlignV>; default: null; validator: (value: Nullable<QRowPropAlignV>) => boolean; }; alignH: { type: PropType<QRowPropAlignH>; default: null; validator: (value: Nullable<QRowPropAlignH>) => boolean; }; }>>, { tag: string; alignV: QRowPropAlignV; alignH: QRowPropAlignH; }>>; export type { QRowProps, QRowInstance } from './src/types';