export interface GridColProps {
    span: number;
    offset: number;
}
/**
 * Determines the span and offset for Grid.Col based on the number of visuals in a row.
 *
 * @param numVisuals - Number of visuals in the current row.
 * @returns An object containing `span` and `offset` values.
 */
export declare const getGridColProps: (numVisuals: number, visualIdx: number) => GridColProps;
