import { Util } from "../../declarations"; /** * Prototope border-width util. * * @param value - Config value. * @returns - Prototope util. */ declare const border: (value?: 0 | 2 | 4 | 8 | undefined) => Util; /** * Prototope border-top-width util. * * @param value - Config value. * @returns - Prototope util. */ declare const borderT: (value?: 0 | 2 | 4 | 8 | undefined) => Util; /** * Prototope border-bottom-width util. * * @param value - Config value. * @returns - Prototope util. */ declare const borderB: (value?: 0 | 2 | 4 | 8 | undefined) => Util; /** * Prototope border-right-width util. * * @param value - Config value. * @returns - Prototope util. */ declare const borderR: (value?: 0 | 2 | 4 | 8 | undefined) => Util; /** * Prototope border-left-width util. * * @param value - Config value. * @returns - Prototope util. */ declare const borderL: (value?: 0 | 2 | 4 | 8 | undefined) => Util; export { border, borderT, borderB, borderR, borderL };