export declare function generateClangFormatConfigString(): string;
export declare function checkClangFormatAvailability(): boolean;
export declare function applyClangFormat(content: string): Promise<string>;
export declare function applyClangFormatWithFallback(content: string): Promise<{
    formatted: string;
    usedClangFormat: boolean;
}>;
