import { NodePath } from '@babel/core'; import { ResolvedOptions } from '../types'; export interface IntermediateStyle { start: number; end: number; hostFilePath: string; absoluteFilePath: string; requirePath: string; identifier: string; } export default function createStyleNode(path: NodePath, identifier: string | undefined, { pluginOptions, file }: { pluginOptions: ResolvedOptions; file: any; }): IntermediateStyle;