import { BreakpointsMap } from '@typographist/core'; import { Props } from '../types'; export declare const createErrorMessage: (breaks: BreakpointsMap, name: string) => string; declare type Step = (x: number, y?: string) => (z: Props) => string; export declare const step: Step; export {};