import { NamingConvention } from "@graphql-codegen/visitor-plugin-common"; import { JsonValue } from "type-fest"; export declare type MocksPluginConfig = { addTypename?: boolean; customScalarValues?: { [key: string]: JsonValue; }; mockNamingConvention?: NamingConvention; mockPrefix?: string; mockSuffix?: string; namingConvention?: NamingConvention; typesPrefix?: string; typesSuffix?: string; }; export declare const defaultConfig: MocksPluginConfig;