import { LoaderDefinitionFunction } from 'webpack'; type LinguiLoaderOptions = { config?: string; /** * If true would fail compilation on missing translations **/ failOnMissing?: boolean; /** * If true would fail compilation on message compilation errors **/ failOnCompileError?: boolean; }; declare const loader: LoaderDefinitionFunction; export = loader;