export type * from "./Section.js";
export type * from "./Section.Header.js";
export type * from "./Section.Content.js";
/**
* Section wrapper, for stying a box with header and content
*
* @see https://bifrost.intility.com/react/section
*
* @example
*
* Section header
* Section content
*
*
* @example
* // clickable header
*
*/
declare const _default: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes> & {
/** Header part of a `` */
Header: import("react").ForwardRefExoticComponent>;
/** Content part of a `` */
Content: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>;
};
export default _default;