import { UseStateful } from './useStateful'; import { UseArrayActions } from './array/useArray'; export declare type UseArray = UseStateful & UseArrayActions; export declare function useArray(initial: T[]): UseArray; export default useArray;