import type { HTMLAttributes, Ref } from "react"; export interface PanelProps extends HTMLAttributes { /** Inner padding in px. @default 24 */ padding?: 16 | 24; /** Forwarded ref to the root element. */ ref?: Ref; } /** Elevated surface panel (D51): secondary background, faint hairline, * radius-12 — the shared --psi-surface-* recipe Dialog's panel also binds. * Not a Card: no media slot, no hover lift, opaque by design. */ export declare function Panel({ padding, className, children, ref, ...rest }: PanelProps): import("react").JSX.Element; //# sourceMappingURL=Panel.d.ts.map