import type { JSXElementConstructor } from 'react'; interface InvariantCheckerParams { childrenTypes?: (string | JSXElementConstructor)[]; hasOnChange: boolean; hasOptions: boolean; } declare function checkInvariantViolations({ childrenTypes, hasOnChange, hasOptions, }: InvariantCheckerParams): void; export default checkInvariantViolations;