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