import Vue from 'vue' /** IDesignUI component common definition */ export declare class IDesignUIComponent extends Vue { /** Install component into Vue */ static install (vue: typeof Vue): void } /** Component size definition for button, input, etc */ export type IDesignUIComponentSize = 'large' | 'medium' | 'small' | 'mini' /** Horizontal alignment */ export type IDesignUIHorizontalAlignment = 'left' | 'center' | 'right'