import Vue from 'vue'; /** ShipberUI component common definition */ export declare class ShipberUIComponent extends Vue { /** Install component into Vue */ static install(vue: typeof Vue): void; } declare module 'vue/types/vue' { interface Vue { install(vue: typeof Vue): void; } } /** Component size definition for button, input, etc */ export type ShipberUIComponentSize = 'large' | 'medium' | 'small' | 'mini'; /** Horizontal alignment */ export type ShipberUIHorizontalAlignment = 'left' | 'center' | 'right';