import React from "react";
interface SlottedDivProps extends React.HTMLAttributes<HTMLDivElement> {
    asChild?: boolean;
}
declare const SlottedDivElement: React.ForwardRefExoticComponent<SlottedDivProps & React.RefAttributes<HTMLDivElement>>;
type SlottedDivElementRef = React.ElementRef<typeof SlottedDivElement>;
export { SlottedDivElement, type SlottedDivElementRef, type SlottedDivProps };
