import { Dot, TriangleDirections } from './types'; export declare const mergeObjects: >(defaults: S, current?: Partial) => S; export declare const isNumber: (val: unknown) => val is number; export declare const last: (array: T[]) => T; export declare const getTrianglePoints: (width: number, height: number, direction: TriangleDirections) => Dot[];