/// import { TBaseInputProps, TBaseProps } from '../types'; import '../styles/components/OutputList.scss'; declare type Props = TBaseProps & TBaseInputProps>> & { direction?: 'row' | 'column'; labelFieldId?: string; linkFieldId?: string; separator?: string; target?: string; }; export declare const OutputList: ({ className, direction, value, ...rest }: Props) => JSX.Element; export {};