import type { IComponentBaseProps } from '../../types';
import type { HTMLAttributes, HTMLLiAttributes } from 'svelte/elements';
export type TProps = Omit<HTMLAttributes<HTMLDivElement>, 'color'> & IComponentBaseProps;
export type TItemProps = HTMLLiAttributes & {
    href?: string;
};
