GamePortrait/node_modules/vant/lib/cell-group/index.d.ts

28 lines
972 B
TypeScript

export declare const CellGroup: import("../utils").WithInstall<import("vue").DefineComponent<{
title: StringConstructor;
inset: BooleanConstructor;
border: {
type: BooleanConstructor;
default: true;
};
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
title: StringConstructor;
inset: BooleanConstructor;
border: {
type: BooleanConstructor;
default: true;
};
}>>, {
border: boolean;
inset: boolean;
}>>;
export default CellGroup;
export { cellGroupProps } from './CellGroup';
export type { CellGroupProps } from './CellGroup';
export type { CellGroupThemeVars } from './types';
declare module 'vue' {
interface GlobalComponents {
VanCellGroup: typeof CellGroup;
}
}