import type { Ref } from 'vue'; import type { SpecifyRequiredProps } from '../types/utilities'; export declare namespace KottiRow { type Context = { gap: Readonly>; gutter: Readonly>; }; enum Align { BOTTOM = "bottom", CENTER = "center", TOP = "top" } enum Justify { CENTER = "center", END = "end", START = "start" } type PropsInternal = { align: Align; gap: number; gutter: number; justify: Justify; tag: string; }; type Props = SpecifyRequiredProps; }