import { ComponentTypes } from 'oceanic.js';
import type { CSSProperties } from 'react';
/**
 * Gets the appropriate label for different select menu types
 */
export declare const getSelectTypeLabel: (type: ComponentTypes) => string;
/**
 * Gets the grid layout for media galleries based on count
 */
export declare const getGalleryLayout: (count: number) => CSSProperties;
/**
 * Gets the style for an individual image based on its position and total count
 */
export declare const getImageStyle: (idx: number, count: number) => CSSProperties;
