import type { ComponentColor, IComponentBaseProps } from '../../types';
import type { HTMLAttributes, HTMLLiAttributes } from 'svelte/elements';
export type TProps = HTMLAttributes<HTMLUListElement> & IComponentBaseProps & {
    vertical?: boolean;
    horizontal?: boolean;
};
export type TStepProps = Omit<HTMLLiAttributes, 'value' | 'color'> & IComponentBaseProps & {
    value?: string;
    color?: 'neutral' | ComponentColor;
};
