import { type SupportedLocale } from '../locales/index.js';
export interface UnbeautifyOptions {
    locale?: SupportedLocale;
}
export declare function unbeautify(input: string, options?: UnbeautifyOptions): number;
