import { default as React } from 'react'; export type ClassificationLevel = "unclassified" | "cui" | "controlled" | "confidential" | "secret" | "top-secret" | "top-secret-sci"; export interface ClassificationBannerProps { /** Classification level */ classification: ClassificationLevel; /** Custom label (overrides default text) */ label?: string; /** Position of the banner */ position?: "top" | "bottom"; /** Custom className */ className?: string; } /** * ClassificationBanner - Pure React classification banner * * Displays security classification level. Required for U.S. Space Force applications. * * @example * ```tsx * * * ``` */ export declare const ClassificationBanner: React.NamedExoticComponent;