import { BoxBaseProps } from '../base/boxBase'; /** * Props for the {@link Div} component. * * Extends {@link BoxBaseProps} with all layout-related props removed. * Intended as a neutral block-level wrapper. * * @category Div */ export type DivProps = Omit; /** * Generic block-level container. * * Renders a plain block element without imposing layout semantics. * Use this component when you need a structural wrapper for styling, * spacing, elevation, or surface color — but not layout. * * Built on top of {@link BoxBase} with `type="block"`. * * @category Div * @function * @param props - Block-level props inherited from {@link BoxBase}. * * @example *
* *
*/ export declare const Div: import('react').ForwardRefExoticComponent>;