export type BaseProps = { className?: string; testId?: string; }; export type HTMLProps = Omit< React.ComponentPropsWithoutRef, "children" | "style" | "className" >; export type ComponentVariant = "primary" | "secondary" | "tertiary"; export interface IOption { label: string; value: T; }