import Vue from 'vue';

export declare class YUIComponent extends Vue {
  static install(vue: typeof Vue): void;
}

/** Component size definition for button, input, etc */
export type YUIComponentSize = 'large' | 'medium' | 'small' | 'mini';

/** Horizontal alignment */
export type YUIHorizontalAlignment = 'left' | 'center' | 'right';
