import React, { type ReactNode } from "react"; import { type ViewStyle } from "react-native"; type MDTableProps = { header: ReactNode[][]; rows: ReactNode[][][]; widthArr: number[]; rowStyle?: ViewStyle; cellStyle?: ViewStyle; borderColor?: string; borderWidth?: number; tableStyle?: ViewStyle; }; declare const _default: React.NamedExoticComponent; export default _default; //# sourceMappingURL=MDTable.d.ts.map