import React from "react"; declare type Props = { activeKey: string | null; keyExtractor: (item: T, index: number) => string; horizontal: boolean; layoutAnimationDisabled: boolean; children: React.ReactNode; }; declare type DraggableFlatListContextValue = Omit, "children">; export default function DraggableFlatListProvider({ activeKey, keyExtractor, horizontal, layoutAnimationDisabled, children, }: Props): JSX.Element; export declare function useDraggableFlatListContext(): DraggableFlatListContextValue; export {};