@kietpt2003/react-native-core-ui
Version:
React Native Core UI components by KietPT
20 lines • 650 B
TypeScript
import React from "react";
import { LayoutChangeEvent, StyleProp, ViewStyle } from "react-native";
type Props<T> = {
item: T;
index: number;
children: React.ReactNode;
onLayout?: (e: LayoutChangeEvent) => void;
style?: StyleProp<ViewStyle>;
};
declare function CellRendererComponent<T>(props: Props<T>): import("react/jsx-runtime").JSX.Element;
declare const _default: typeof CellRendererComponent;
export default _default;
declare global {
namespace NodeJS {
interface Global {
RNDFLLayoutAnimationConfigStash: Record<string, unknown>;
}
}
}
//# sourceMappingURL=CellRendererComponent.d.ts.map