import { type HTMLAttributes } from 'react';
import type { ExtendThemeKeys } from '../../../types/theme';
/**
* Props for the description text component of the CookieBanner.
* Extends standard HTML div attributes.
*
* @public
*/
export interface BoxProps extends Omit, 'style'>, ExtendThemeKeys {
asChild?: boolean;
}
/**
* Renders the descriptive text content within a CookieBanner.
*
* @remarks
* This component is responsible for displaying the explanatory text that:
* - Informs users about the site's cookie usage
* - Explains what cookies are used for
* - Provides context for the cookie consent choices
*
* The component automatically inherits styles from the CookieBanner context
* and can be customized through className and style props.
*
* @example
* Basic usage:
* ```tsx
*
* We use cookies to enhance your browsing experience and analyze site traffic.
*
* ```
*
* @example
* With custom styling:
* ```tsx
*
* By using our site, you acknowledge that you have read and understand our
* Cookie Policy and Privacy Policy.
*
* ```
*
* @public
*/
export declare const Box: import("react").ForwardRefExoticComponent>;