import type { NodePath } from '@babel/core'; import * as t from '@babel/types'; import type { PluginPass } from '../types'; /** * Will remove found style declarations tied to the passed in `node`, * and callback with any found. * * @param node * @param parentPath * @param pass */ export declare const removeStyleDeclarations: (node: t.Node, parentPath: NodePath, pass: PluginPass) => void;