import type { FillAction } from './utils/FillAction'; type TestInputValueReflectionOptions = { additionalProperties?: string; componentName: string; equalityCheck?: 'toBe' | 'toEqual'; fillAction?: FillAction; testValue?: unknown; }; declare const testInputValueReflection: ({ additionalProperties, componentName, equalityCheck, fillAction, testValue, }: TestInputValueReflectionOptions) => void; export { testInputValueReflection };