/** @tossdocs-ignore */ import { ComponentPropsWithoutRef, ElementType, HTMLProps } from 'react'; export declare type ExtendHTMLProps = Omit, keyof T> & T; export declare type CSSPixelValue = string | number; export declare type AxisDirection = 'vertical' | 'horizontal'; export declare type InferenceHTMLElement = NonNullable>['current']>; export declare type StringElementType = ElementType & string; export declare type AsProps = ComponentPropsWithoutRef & { as?: T; };