///
import { Theme } from '@material-ui/core';
import { Gap } from './core';
import { Breakpoint } from '@material-ui/core/styles/createBreakpoints';
export declare const getThemeCssValue: (gap: string | number, theme?: Pick) => string;
export declare const resolveGap: (gap: string | number, theme?: Pick) => import("react").ReactText;
export declare const gapToCss: (theme: Pick, resolver?: (gap: string | number, theme?: Pick) => import("react").ReactText) => (gap: Gap) => Gap;
export declare const getLowerMediaQuery: ({ breakpoints }: Pick, bp: Breakpoint | number) => string;