export declare type Matrix = Record>; /** * Displays a cartesian product of the input props * * @returns */ export declare function MatrixStory({ matrix, props, Component, }: { matrix: Matrix; props: Record; Component: any; }): any[];