import { Point } from './math/Point'; import Surface from './Surface'; export declare type SurfaceChild = { readonly surface: Surface; position: Point; }; export declare function createSurfaceChild(surface: Surface): SurfaceChild;