import { PluginFunction } from 'graphql-codegen-core'; export { DEFAULT_SCALARS } from './visitor'; export * from './utils'; export * from './variables-to-object'; export * from './visitor'; export declare type ScalarsMap = { [name: string]: string; }; export declare type EnumValuesMap = { [key: string]: string; }; export interface FlowPluginConfig { scalars?: ScalarsMap; enumValues?: EnumValuesMap; namingConvention?: string; typesPrefix?: string; useFlowExactObjects?: boolean; useFlowReadOnlyTypes?: boolean; } export declare const plugin: PluginFunction;