import { Preprocessor } from './transform'; import { PluginOptions } from './babel/utils/loadOptions'; import { Optional } from './typeUtils'; declare type RollupPluginOptions = { include?: string | string[]; exclude?: string | string[]; sourceMap?: boolean; preprocessor?: Preprocessor; } & Optional; export default function linaria({ include, exclude, sourceMap, preprocessor, ...rest }?: RollupPluginOptions): { name: string; load(id: string): string; resolveId(importee: string): string | undefined; transform(code: string, id: string): { code: string; map: Object | null | undefined; } | undefined; }; export {};