import { Convert2MapType as _Convert2MapType } from './convert-2-map'; import { Convert2TreeType as _Convert2TreeType } from './convert-2-tree'; import { CopyDeepType } from './copy-deep'; import { CountType } from './count'; import { FlattenTreeType as _FlattenTreeType } from './flatten-tree'; import { GetLastType } from './get-last'; import { IsArrType as _IsArrType } from './is-arr'; import { IsEmptyArrType as _IsEmptyArrType } from './is-empty'; import { IsIncludeInArrType as _IsIncludeInArrType } from './is-include-in'; import { RepeatArrType as _RepeatArrType } from './repeat'; import { TraverseDeepType as _TraverseDeepType } from './traverse-deep'; export declare const Convert2MapType_Name = "Convert2MapType"; export type Convert2MapType = _Convert2MapType; export declare const Convert2TreeType_Name = "Convert2TreeType"; export declare const Convert2TreeNodeType_Name = "Convert2TreeNodeType"; export declare const Convert2TreeReturnTreeType_Name = "Convert2TreeReturnTreeType"; export declare const Convert2TreeReturnMapType_Name = "Convert2TreeReturnMapType"; export declare const Convert2TreeReturnType_Name = "Convert2TreeReturnType"; export type Convert2TreeType = _Convert2TreeType; export type { Convert2TreeNodeType, Convert2TreeReturnTreeType, Convert2TreeReturnMapType, Convert2TreeReturnType } from './convert-2-tree'; export declare const CopyArrDeepType_Name = "CopyArrDeepType"; export type CopyArrDeepType = CopyDeepType; export declare const CountArrItemType_Name = "CountArrItemType"; export type CountArrItemType = CountType; export declare const FlattenTreeType_Name = "FlattenTreeType"; export declare const FlattenTreeStrategyConst_Name = "FlattenTreeStrategyConst"; export declare const FlattenTreeStrategyConstType_Name = "FlattenTreeStrategyConstType"; export declare const FlattenTreeOptionsType_Name = "FlattenTreeOptionsType"; export type FlattenTreeType = _FlattenTreeType; export { FlattenTreeStrategyConst } from './flatten-tree'; export type { FlattenTreeStrategyConstType, FlattenTreeOptionsType } from './flatten-tree'; export declare const GetArrLastType_Name = "GetArrLastType"; export type GetArrLastType = GetLastType; export declare const IsArrType_Name = "IsArrType"; export type IsArrType = _IsArrType; export declare const IsEmptyArrType_Name = "IsEmptyArrType"; export type IsEmptyArrType = _IsEmptyArrType; export declare const IsIncludeInArrType_Name = "IsIncludeInArrType"; export type IsIncludeInArrType = _IsIncludeInArrType; export declare const RepeatArrType_Name = "RepeatArrType"; export type RepeatArrType = _RepeatArrType; export declare const TraverseArrDeepType_Name = "TraverseArrDeepType"; export type TraverseArrDeepType = _TraverseDeepType; export declare const ArrUtil_Name = "ArrUtil"; export declare const ArrUtil: { convert2Map: Convert2MapType; convert2Tree: Convert2TreeType; copyDeep: CopyArrDeepType; count: CountArrItemType; flattenTree: FlattenTreeType; getLast: GetArrLastType; isArr: IsArrType; isEmpty: IsEmptyArrType; isIncludeIn: IsIncludeInArrType; repeat: RepeatArrType; traverseDeep: TraverseArrDeepType; };