export type CommonProps = { className?: string; }; export type AriaLabelProperty = { 'aria-label'?: string; }; export type LinkProps = { href: string; target?: React.HTMLAttributeAnchorTarget; onClick?: React.MouseEventHandler; }; export type Heading = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; export type ParentElement = HTMLElement | Window | Document;