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