import type { AllHTMLAttributes, ReactNode } from 'react'; export declare type GlobalProps = { className?: string; as?: keyof HTMLElementTagNameMap; children?: ReactNode; } & AllHTMLAttributes;