import type { IStyleHandlerOptions, StyleHandler } from '@weapp-tailwindcss/postcss/types';
import type { PlatformAdapter } from './types.js';
export interface CreateStylePlatformAdapterOptions {
    id: PlatformAdapter['id'];
    styleHandler: StyleHandler;
    styleOptions?: Partial<IStyleHandlerOptions> | undefined;
}
export declare function createPassthroughPlatformAdapter(id: PlatformAdapter['id']): PlatformAdapter;
export declare function createStylePlatformAdapter(options: CreateStylePlatformAdapterOptions): PlatformAdapter;
