import { MatchImageSnapshotOptions } from 'jest-image-snapshot'; export type Fns = { [FilteredKey in { [PropName in keyof T]: T[PropName] extends (...args: any) => any ? PropName : never; }[keyof T]]: T[FilteredKey]; }; declare global { namespace jest { interface Matchers { toMatchImageSnapshot(filename: string): R; toMatchImageSnapshot(options?: MatchImageSnapshotOptions): R; } } } //# sourceMappingURL=types.d.ts.map