import React from 'react';

interface CreateStyleTagOptions extends React.HtmlHTMLAttributes<any>, Record<string, any> {
    id: string;
}
declare function createStyleTag(style: string, options: CreateStyleTagOptions): HTMLStyleElement;

export { createStyleTag };
