/** Get generated TailwindCSS from the content with prefix added to each class */
export declare function getDynamicTailwindCss({ content, prefix, }: {
    content: string;
    prefix?: string;
}): Promise<string>;
export declare function getTailwindSelectors({ content }: {
    content: string;
}): Promise<string[]>;
