import type { TransformResult } from 'vite';
import type { ICustomAttributesEntities, JsHandler } from '../types/index.js';
interface TransformUVueOptions {
    customAttributesEntities?: ICustomAttributesEntities;
    disabledDefaultTemplateHandler?: boolean;
    enableComponentLocalStyle?: boolean;
    enablePageLocalStyle?: boolean;
}
export declare function transformUVue(code: string, id: string, jsHandler: JsHandler, runtimeSet?: Set<string>, options?: TransformUVueOptions): undefined | TransformResult;
export {};
