/// <reference types="react" />
import type { StyleSheetOpts } from './types';
interface StyleProps extends StyleSheetOpts {
    /**
     * CSS Rules.
     * Ensure each rule is a separate element in the array.
     */
    children: string[];
}
export default function Style(props: StyleProps): JSX.Element | null;
export {};
