@kietpt2003/react-native-core-ui
Version:
React Native Core UI components by KietPT
9 lines • 425 B
TypeScript
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