import { type JSX, type ReactNode } from "react";
import type { RowFullWidthRowLayout } from "../+types";
import { type DropWrapProps } from "@1771technologies/lytenyte-core/yinternal";
export interface RowFullWidthProps extends Omit<DropWrapProps, "accepted"> {
    readonly row: RowFullWidthRowLayout<any>;
    readonly space?: "viewport" | "scroll-width";
    readonly accepted?: string[];
}
export declare const RowFullWidth: (props: JSX.IntrinsicElements["div"] & RowFullWidthProps) => ReactNode;
