import type { DznLintConfiguration, DznLintFormatConfiguration } from "./dznlint-configuration"; export declare const DEFAULT_DZNLINT_CONFIG_FILE = "dznlint.config.json"; type DefaultDznLintConfig = { [K in keyof DznLintConfiguration]: false | DznLintConfiguration[K]; }; export declare const DEFAULT_DZNLINT_CONFIG: DefaultDznLintConfig; export declare const DEFAULT_DZNLINT_FORMAT_CONFIG: DznLintFormatConfiguration; export {};