import * as React from "react"; import { DropdownProps, IconProps } from "../../.."; interface ResourceListSortItem { displayName: string; value: string; testid: string; icon?: IconProps; } export interface ResourceListSortProps extends DropdownProps { itemList: ResourceListSortItem[]; initialSortValue: ResourceListSortItem; } declare const _default: React.NamedExoticComponent; export default _default;