import { BalTabOption } from './bal-tab.type'; interface Option { value: string; label: string; href?: string; target?: BalProps.BalButtonTarget; active?: boolean; disabled?: boolean; done?: boolean; invisible?: boolean; failed?: boolean; prevent?: boolean; hidden?: boolean; } export declare const newBalTabOption: (option: Option) => BalTabOption; export {};