import { CSSProperties } from 'react'; type Style = CSSProperties; interface PrimaryProps { height?: string | number; width?: string | number; color?: string; ariaLabel?: string; wrapperStyle?: CSSProperties; wrapperClass?: string; visible?: boolean; } export type { PrimaryProps as P, Style as S };