import { type CSSProperties, type ElementType } from 'react'; import { type DimensionType, type SpiritMatrixProps } from '../../types'; export interface MatrixStyles { classProps: string; props: T; styleProps: CSSProperties; } export declare const useDefaultResponsiveRowsStyle: (cols: DimensionType | undefined, rows: DimensionType | undefined, itemsCount: number, prefix: string) => React.CSSProperties; export declare function useMatrixStyleProps(props: SpiritMatrixProps): MatrixStyles>;