import type { WidthNames } from '../types';
interface Width {
    values: string[];
    widths: {
        [index in WidthNames]: number;
    };
    defaultValue: string;
}
export declare const width: Width;
export {};
