import * as React from 'react';
type MemoizedItemProps = {
    index: number;
    item: string;
    getItemProps: (options: Record<string, unknown>) => React.HTMLAttributes<HTMLLIElement>;
    stringItem: string;
    [key: string]: unknown;
};
export declare const MemoizedItem: React.NamedExoticComponent<MemoizedItemProps>;
export {};
