import { ReactNode } from 'react'; interface SchemaNotBranchProps { children: ReactNode; } /** Branch UI for not schemas — shows the negated subschema. */ export default function SchemaNotBranch({ children }: SchemaNotBranchProps): import("react").JSX.Element; interface BooleanNotPillProps { value: boolean; } /** Compact label for boolean not subschemas (true/false). */ export declare function BooleanNotPill({ value }: BooleanNotPillProps): import("react").JSX.Element; export {};