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