export declare const GAP_VALUES: number[]; export type AllowedNumericalValues = (typeof GAP_VALUES)[number]; export type Gap = AllowedNumericalValues | string; export declare const getGapValue: (gapValue: number | string) => string; export default function gap(gapValue: number | string): string;