/** * Disclaimer — first-class (W2 §The Kit + spec law 1). When no tool backs the * ask, the honest, legal move is to say so — not to invent data. A styled, * deliberate notice, never an error or an empty div. */ import { type KitStyled } from "../tokens.js"; export interface DisclaimerProps extends KitStyled { /** Why the ask can't be fulfilled with real data. */ reason: string; /** Optional heading; defaults to a neutral lead-in. */ title?: string; } export declare function Disclaimer({ reason, title, style }: DisclaimerProps): import("react").JSX.Element;