import { FC } from "react"; import { Point } from "./models"; import { OrientationsEnum } from "./utils"; export interface LayoutProps { className?: string; orientation?: OrientationsEnum; origin?: Point; hexSize?: number; spacing?: number; } declare const LayourProvided: FC; export { LayourProvided as Layout }; //# sourceMappingURL=layout.d.ts.map