export declare const DEFAULT_VSCODE_ENTRY_OUTPUT = ".vscode/weapp-tailwindcss.intellisense.css";
export declare const DEFAULT_VSCODE_SOURCES: string[];
export interface GenerateVscodeEntryOptions {
    baseDir: string;
    cssEntry: string;
    output?: string | undefined;
    sources?: string[] | undefined;
    force?: boolean | undefined;
}
export interface GenerateVscodeEntryResult {
    outputPath: string;
    cssEntryPath: string;
}
export declare function generateVscodeIntellisenseEntry(options: GenerateVscodeEntryOptions): Promise<GenerateVscodeEntryResult>;
