import { StylesAndClasses, FlexProperty, ResponsiveProp } from '../types'; export declare function parsePropertyValue(value: string): string | number; export declare function getFlexStyles(value?: string): FlexProperty | undefined; export declare function getFlexClasses(value?: string): string[] | undefined; /** * Returns an object of styles and class names that correspond with the given flex value * @param {string} [value] spacing token value */ export declare function getFlexCss(value?: ResponsiveProp | string): StylesAndClasses;