import { default as Grid } from './src/grid'; import { default as GridItem } from './src/grid-item'; declare const gridWithInstall: { (componentPrefix: string): { install(app: import('vue').App): void; }; useInstall: boolean; }; declare const gridItemWithInstall: { (componentPrefix: string): { install(app: import('vue').App): void; }; useInstall: boolean; }; export * from './src/grid'; export * from './src/grid-item'; export { gridWithInstall, Grid, gridItemWithInstall, GridItem }; export default Grid; declare module 'vue' { interface GlobalComponents { YyGrid: typeof Grid; YyGridItem: typeof GridItem; YyGi: typeof GridItem; } }