import { BreakpointNameType, StylePropsType } from '../../type';
export declare const muiBreakpointUp: (breakpointName: BreakpointNameType) => ({ theme, }: StylePropsType) => string;
export declare const muiBreakpointDown: (breakpointName: BreakpointNameType) => ({ theme, }: StylePropsType) => string;
export declare const muiBreakpointBetween: (breakpointStartName: BreakpointNameType, breakpointEndName: BreakpointNameType) => ({ theme }: StylePropsType) => string;
