import * as BabelTypes from '@babel/types'; export interface Babel { /** Babel base types. */ types: typeof BabelTypes; } export interface IncludeStylesOptions { /** The name of the scoped design-system */ scope: string; } /** * Find imports of @design-system/cli components and automatically includes their styles. */ export default function includeStyles({ types }: Babel, { scope }: IncludeStylesOptions): babel.PluginObj; //# sourceMappingURL=index.d.ts.map