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