import { ThemeValues } from '.';
export type ThemeSpace = {
    xxs: string;
    xs: string;
    sm: string;
    md: string;
    lg: string;
    xl: string;
    xxl: string;
    '3xl': string;
    '4xl': string;
    '5xl': string;
    '6xl': string;
    '7xl': string;
    [key: string]: string;
    [key: number]: string;
};
export declare const getSpace: (theme: ThemeValues) => ThemeSpace;
