import type { ReactNode } from 'react'; import { type NeoElevation } from './neopop'; export interface UsageSectionProps { title: ReactNode; subtitle?: ReactNode; /** Right-aligned controls: segmented tabs, sort pickers, counters. */ actions?: ReactNode; elevation?: NeoElevation; className?: string; bodyClassName?: string; children: ReactNode; } /** * Standard panel shell: hard-edged surface, a ruled header carrying the * eyebrow, and a slot for per-panel controls so each block stays * self-contained. */ export declare function UsageSection({ title, subtitle, actions, elevation, className, bodyClassName, children, }: UsageSectionProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=UsageSection.d.ts.map