import type { RuleModule } from '../../types'; /** * Enforce consistent brace style for blocks. * Default: "1tbs" (one true brace style) - opening brace on same line, closing brace on new line. * * Detects violations like: * - Closing brace on same line as next block (else, catch, finally, etc.) * - Opening brace on new line instead of same line */ export declare const braceStyle: RuleModule;