import { Child, LayerProps, Size } from "../types"; declare type Args = { currentChildren: Child[]; index: number; flexDirection: LayerProps["flexDirection"]; alignItems: LayerProps["alignItems"]; justifyContent: LayerProps["justifyContent"]; gap: LayerProps["gap"]; size: Size; }; export default function layout({ currentChildren, index, flexDirection, alignItems, justifyContent, gap, size, }: Args): [x: number, y: number]; export {};