import type { ClassName } from "@reshaped/utilities"; import type { ViewProps } from "../../components/View"; import type { Attributes } from "../../types/global"; export type Props = Pick & { /** Additional classname for the root element */ className?: ClassName; /** Additional attributes for the root element */ attributes?: Attributes<"div">; };