import { LLVM } from '@smake/llvm'; type TargetType = 'x86_64-apple-darwin' | 'arm64-apple-darwin' | 'x86_64-linux-gnu' | 'aarch64-linux-gnu' | 'arm-linux-gnueabihf' | 'x86_64-pc-windows-msvc' | 'i386-pc-windows-msvc' | string; export declare class LibFmt extends LLVM { constructor(target: TargetType); static config(llvm: LLVM): void; } export {};