import React from "react"; import type { ContainerQueryBreakpoints } from "../../../shared/mediaQueries"; export type StyledContainerQueryProps = { as?: React.ElementType; children: React.ReactNode[] | React.ReactNode; containerName?: string; breakpoints: ContainerQueryBreakpoints; "data-e2e-test-id"?: string; }; export declare function ContainerQuery({ as, children, containerName, breakpoints, "data-e2e-test-id": dataE2eTestId, }: StyledContainerQueryProps): React.ReactElement;