import type { BoxProps } from "../Box/Box"; type SummaryProps = Omit & { breakpoint?: number | string; }; declare function Summary({ breakpoint, children, ...rest }: SummaryProps): import("react/jsx-runtime").JSX.Element; export default Summary;