import { type ComponentProps, type FC, type Ref } from 'react'; import { type TestableProps } from '../../../utils/testId'; type IpListNativeProps = ComponentProps<'div'>; type IpListVariantProps = { type?: 'vertical'; asChild?: boolean; } | { type: 'horizontal'; asChild?: never; }; type IpListBaseProps = IpListVariantProps & TestableProps & { ref?: Ref; }; export type IpListProps = IpListNativeProps & IpListBaseProps; export declare const IpList: FC; export {};