import type { Size } from './types';
export declare const sizes: Record<Size, string>;
export declare const sizeMap: Record<Size, Size>;
export declare const dimensions: {
    readonly small: {
        readonly width: string;
        readonly height: string;
    };
    readonly medium: {
        readonly width: string;
        readonly height: string;
    };
    readonly large: {
        readonly width: string;
        readonly height: string;
    };
    readonly xlarge: {
        readonly width: string;
        readonly height: string;
    };
};
