import React, { type ElementType } from 'react'; import { type UseBoxProps } from './usePolymorphicBox'; /** * A polymorphic Box component that provides a flexible container with styling capabilities, defaulting to a `
` element. * Use the `as` prop to control the rendered HTML tag. The box component exposes design system tokens relative to each style * prop. * * An alternative to the `as` prop is `asComponent` which allows a React element to render with the custom props * * Props include: * - Sprinkles props (spacing, colors, layout, etc.) * - Responsive props (arrays for different breakpoints) * - Also accepts valid HTML attributes for the chosen HTML tag * * @example * * Section content * * * @example * Responsive padding * * @example * } borderColor="info" borderWidth="1" /> */ export declare const PolymorphicBox: { ({ children, ...props }: UseBoxProps): React.JSX.Element; displayName: string; }; //# sourceMappingURL=PolymorphicBox.d.ts.map