import type { JSX } from "react"; import type { RenderProp } from "../render"; /** * Renders a sheet part through `render` (or its default tag) via Base UI's * `useRender`. Centralising the hook here lets each part early-return before * constructing the element without tripping the Rules of Hooks. */ export declare const SheetPartElement: ({ defaultTagName, props, render, }: { defaultTagName: keyof JSX.IntrinsicElements; props: Record; render: RenderProp | undefined; }) => import("react").ReactElement>; //# sourceMappingURL=sheet-part-element.d.ts.map