import type { LiteralUnion } from '../../types';
import type { DesignSystemSize } from './types';
export declare const columnGapClassNames: Record<DesignSystemSize, string>;
export declare const rowGapClassNames: Record<DesignSystemSize, string>;
export type GapProp = LiteralUnion<DesignSystemSize, number>;
export type GapsProp = GapProp | [GapProp, GapProp];
/**
 * Возвращает массив отступов [rowGap, columnGap]
 */
export declare function calculateGap(gap: GapsProp): [GapProp, GapProp];
//# sourceMappingURL=gaps.d.ts.map