import { Theme } from '../theme/theme.types'; type Breakpoint = keyof Theme['breakpoints']; export declare const above: (breakpoint: Breakpoint) => ({ theme }: { theme: Theme; }) => string; export declare const below: (breakpoint: Breakpoint) => ({ theme }: { theme: Theme; }) => string; export declare const between: (firstBreakpoint: Breakpoint, secondBreakpoint: Breakpoint) => ({ theme }: { theme: Theme; }) => string; export {};