import type { Declaration } from "postcss";
import type { Node, ParsedValue } from "postcss-value-parser";
export declare const isDeclWithUrl: (decl: Declaration) => boolean;
export declare const walkUrls: (parsed: ParsedValue, callback: (url: string, node?: Node) => void) => void;
