import { OffsetType } from '../../types/OffsetType'; type TrblType = { top: string; right: string; bottom: string; left: string; }; declare const trbl: (...coordinates: Array) => TrblType; export default trbl; export { TrblType };