import { SideKeyword } from './sideKeyword';

declare interface TriangleConfiguration {
  backgroundColor?: string;
  foregroundColor: string;
  height: number | string;
  width: number | string;
  pointingDirection: SideKeyword;
}

export { TriangleConfiguration };
