export interface ParsedSides { top: number; right: number; bottom: number; left: number; } /** Converts a string of directional CSS shorthand values into an object with the values expanded. @param sides The CSS shorthand string to expand. */ export default function (sides: string | number): ParsedSides;