import * as React from 'react';
import type { IGroupedListV2Props } from './GroupedListV2.types';
/**
 * NOTE: GroupedListV2 is "unstable" and meant for preview use. It passes
 * the same test suite as GroupedList but it is an entirely new implementation
 * so it may have bugs and implementation details may change without notice.
 *
 * GroupedListV2 is an API-compatible replacement for GroupedList with a new implementation
 * that addresses issues GroupedList has with virtualizing nested lists under certain
 * conditions.
 */
declare const GroupedListV2: React.FunctionComponent<IGroupedListV2Props>;
export { GroupedListV2 as GroupedListV2_unstable };
export type { IGroupedListV2Props } from './GroupedListV2.types';
