import React from 'react';
import { IListOptions } from './types/listOptions';
export declare const ListOptionsComponent: React.ForwardRefExoticComponent<IListOptions<unknown> & React.RefAttributes<HTMLDivElement>>;
declare const ListOptionBoundary: <V extends string | unknown>(props: IListOptions<V>, ref: React.ForwardedRef<HTMLDivElement> | undefined | null) => JSX.Element;
declare const ListOptions: <V extends string | unknown>(props: React.PropsWithChildren<IListOptions<V>> & {
    ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => ReturnType<typeof ListOptionBoundary>;
export { ListOptions };
