import React from 'react' declare module 'react' { interface StyleHTMLAttributes extends HTMLAttributes { jsx?: boolean global?: boolean } } declare module 'styled-jsx' { export type StyleRegistry = { styles(options?: { nonce?: string }): JSX.Element[] flush(): void add(props: any): void remove(props: any): void } export function useStyleRegistry(): StyleRegistry export function StyleRegistry({ children, registry }: { children: JSX.Element | React.ReactNode registry?: StyleRegistry }): JSX.Element export function createStyleRegistry(): StyleRegistry }