import React from 'react'; import type { Fixture, Interceptor } from './fixtureTypes.js'; type Props = { children: React.ReactNode; readonly fixtures: (Fixture | Interceptor)[]; silenceMissing: boolean; getInitialInterceptorData: () => T; }; /** Can be used to mock responses based on fixtures provided. * * * * Place below and above any components you want to mock. */ declare function MockResolver({ children, fixtures, getInitialInterceptorData, silenceMissing, }: Props): JSX.Element; declare namespace MockResolver { var defaultProps: { silenceMissing: boolean; getInitialInterceptorData: () => {}; }; } export default MockResolver; //# sourceMappingURL=MockResolver.d.ts.map