import { FilterPattern } from '@rollup/pluginutils'; interface Options { include?: FilterPattern; exclude?: FilterPattern; enforce?: 'pre' | 'post' | undefined; flags?: { noTryCatchDisplayNames?: boolean; noStyledComponents?: boolean; noCreateContext?: boolean; ignoreComponentSubstrings?: Array; }; } export type { Options as O };