import React from "react";
import { DraggableFlatListProps } from "../../constants/DraggableFlatList/types";
type Props<T> = DraggableFlatListProps<T> & {
    children: React.ReactNode;
};
export default function PropsProvider<T>({ children, ...props }: Props<T>): import("react/jsx-runtime").JSX.Element;
export declare function useProps<T>(): DraggableFlatListProps<T>;
export {};
//# sourceMappingURL=propsContext.d.ts.map