import React from "react"; export interface MatrixProps { primary: Array>; secondary?: Array>; children: (props: Partial) => React.ReactNode; } declare function Matrix({ primary, secondary, children }: MatrixProps): React.JSX.Element; export default Matrix;