import { IHtmlDivProps } from "../types"; /** * A wrapper component for the HTML `
` element. * * This component accepts the standard HTML props for the `
` element, as well * as any additional props supported by the underlying React Native component. * * @example *
Hello, world!
* * @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div} * @see {@link https://reactnative.dev/docs/view#props} */ export declare const Div: (props: IHtmlDivProps & import("../../components/Slot").AsChildProps) => import("react").ReactElement;