export type TabDirection = 'horizontal' | 'vertical';
export type TabBarPositionType = 'top' | 'bottom' | 'left' | 'right';
export interface TabsOnChangeEvent {
    index: number;
}
