import { type Casing } from "../_internal/casing.js"; import { ruleCreator } from "../_internal/rule-creator.js"; type MessageIds = "onlyExport"; type Options = readonly [ Readonly<{ readonly format?: Casing; }> ]; /** * Enforce that exports matching the filename are the only export in the file. */ declare const rule: ReturnType>; export default rule; //# sourceMappingURL=export-matching-filename-only.d.ts.map