import { Node, Container } from 'postcss-selector-parser';
export declare function findNode(container: Container, predicate: (node: Node) => boolean): Node | undefined;
export declare function replaceNodeWith(oldNode: Node, ...newNodes: Node[]): void;
export declare function trimNodeWhitespaces(node: Node): void;
