export type Direction = "row" | "column"; declare enum GapSizeValues { xs = "2", s = "4", m = "8", l = "12", xl = "16", xxl = "20" } export type GapSize = keyof typeof GapSizeValues; export declare class ScoutStack { /** * The direction of the stack. */ direction: Direction; /** * Gap size. If more sizes are needed, we can expand. */ gapSize: GapSize; render(): any; } export {};