import { ReactNode } from 'react'; interface SchemaIfThenElseBranchProps { ifContent: ReactNode; /** Omit when the then keyword was absent. */ thenContent?: ReactNode; /** Omit when the else keyword was absent. */ elseContent?: ReactNode; } /** Consolidated if/then/else block with one continuous muted left line. */ export default function SchemaIfThenElseBranch({ ifContent, thenContent, elseContent, }: SchemaIfThenElseBranchProps): import("react").JSX.Element; export {};