/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface RowProps extends StyleProps, React.PropsWithChildren<any>, IdProps {
}
export declare const Row: ({ id, children, style, className }: RowProps) => import("react/jsx-runtime").JSX.Element;
