import { DebugNodeConverterOptions } from '../fixture-converter'; export interface SnapshotSerializerPlugin { print(val: any, serialize: (val: any) => string, indent: (str: string) => string): string; test(val: any): boolean; } declare function createFixtureSerializer(options?: DebugNodeConverterOptions): SnapshotSerializerPlugin; export { createFixtureSerializer };