import { BalStepOption } from './bal-step.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 newBalStepOption: (option: Option) => BalStepOption; export {};