import type { ComponentProps, FC, Ref } from 'react'; import { type TestableProps } from '../../utils/testId'; type IpNativeProps = ComponentProps<'div'>; interface IpBaseProps { ref?: Ref; asChild?: boolean; } export type IpProps = IpNativeProps & IpBaseProps & TestableProps; export declare const Ip: FC; export {};