import { TransformCallback } from 'postcss';

/**
 * Adapted from https://github.com/tomasklaen/postcss-prune-var/blob/57ad5041806b73479d0c558e0b1a918803cb7cbc/index.js
 */
declare const removeUnusedCssVars: TransformCallback;

declare const removeUnusedKeyframes: TransformCallback;

export { removeUnusedCssVars, removeUnusedKeyframes };
