import type { PropsFor } from "../../types.js"; export type ContainerBreakpointProps = PropsFor<"div", { /** Will only be displayed when closest `` is wider than `from` */ from?: "xs" | "small" | "medium" | "large" | "xl" | "xxl"; /** Will only be displayed when closest `` is narrower than `to` */ to?: "xs" | "small" | "medium" | "large" | "xl" | "xxl"; }>; declare const ContainerBreakpoint: import("react").ForwardRefExoticComponent>; export default ContainerBreakpoint;