/** * Function to enable shorthand border values. * @example * border = "3px solid blue.300" * * This would parse the border values, and convert the "blue.300" token * to the equivalent color value. If value doesn't exist in theme, it'll use the * raw values. */ export declare function parseBorder(value: string, key?: string): {};