import { type JSX, type ReactNode } from "react";
import type { RowNormalRowLayout } from "../+types";
import { type DropWrapProps } from "@1771technologies/lytenyte-core/yinternal";
export interface RowProps extends Omit<DropWrapProps, "accepted"> {
    readonly row: RowNormalRowLayout<any>;
    readonly accepted?: string[];
}
export declare const Row: (props: Omit<JSX.IntrinsicElements["div"], "onDrag"> & RowProps) => ReactNode;
