import { type ComponentProps, type FC, type ReactElement, type Ref } from 'react'; export interface IpListHorizontalProps extends ComponentProps<'div'> { ref?: Ref; testId?: string; items: ReactElement[]; } export declare const IpListHorizontal: FC;