declare module 'stylis' { export interface Element { parent: Element | null; children: Element[] | string; root: Element | null; type: string; props: string[] | string; value: string; length: number; return: string; line: number; column: number; } export function compile(value: string): Element[]; }