/** * --- * category: utilities/themes * --- * @module mirrorShorthand */ /** * Mirror shorthand CSS properties for bidirectional text * * Given a string representing a CSS shorthand for edges, * swaps the values such that 4 value syntax is RTL instead * of LTR. * * See the following for further reference: * https://developer.mozilla.org/en-US/docs/Web/CSS/Shorthand_properties * * @param {String} values - space delimited string values representing a CSS shorthand * @returns {String} a space delimited CSS shorthand string converted to RTL */ declare function mirrorShorthandEdges(values?: string): string | undefined; /** * Convert shorthand CSS properties for corners to rtl * * Given a string representing a CSS shorthand for corners, * swaps the values such that 2,3 and 4 value syntax is rtl * instead of ltr. * * See the following for further reference: * https://developer.mozilla.org/en-US/docs/Web/CSS/Shorthand_properties * * @param {String} values - space delimited string values representing a CSS shorthand * @returns {String} a space delimited CSS shorthand string converted to RTL */ declare function mirrorShorthandCorners(values?: string): string | undefined; export { mirrorShorthandEdges, mirrorShorthandCorners }; //# sourceMappingURL=mirrorShorthand.d.ts.map