import type { IStyleHandlerOptions } from '@weapp-tailwindcss/postcss/types';
import type { TailwindV4GenerateTarget } from './types.js';
import type { AppType } from '../../types/index.js';
type TailwindV4TargetStyleOptions = Partial<IStyleHandlerOptions> & {
    appType?: AppType | undefined;
};
export declare function normalizeTailwindV4GeneratedUrlValues(css: string): string;
export declare function transformTailwindV4CssToWeapp(css: string, options?: Partial<IStyleHandlerOptions>): Promise<string>;
export declare function transformTailwindV4WebRpxCss(css: string): string;
export declare function transformTailwindV4CssByTarget(css: string, target: TailwindV4GenerateTarget, options?: TailwindV4TargetStyleOptions): Promise<string>;
export {};
