import { Style } from '../types';
export declare const matrixColumns: ({ columns }: {
    columns: number;
}) => Style;
export declare const matrixRows: ({ size }: {
    size?: string;
}) => Style;
export declare const matrixCellStartX: ({ start }: {
    start: number;
}) => Style;
export declare const matrixCellSpanX: ({ span }: {
    span: number;
}) => Style;
export declare const matrixCellStartY: ({ start }: {
    start: number;
}) => Style;
export declare const matrixCellSpanY: ({ span }: {
    span: number;
}) => Style;
export declare const matrixGap: ({ rhythm }: {
    rhythm: string;
}) => Style;
export declare const matrixGapX: ({ rhythm }: {
    rhythm: string;
}) => Style;
export declare const matrixGapY: ({ rhythm }: {
    rhythm: string;
}) => Style;
