import * as postcss from 'postcss'; import { RefedMixin, StylableMeta } from './stylable-processor'; import { ParsedValue } from './types'; export declare type OnUrlCallback = (node: ParsedValue) => void; export declare function collectAssets(ast: postcss.Root): string[]; export declare function isExternal(url: string): any; export declare function isAsset(url: string): boolean; export declare function makeAbsolute(resourcePath: string, rootContext: string, moduleContext: string): string; export declare function processDeclarationUrls(decl: postcss.Declaration, onUrl: OnUrlCallback, transform: boolean): void; export declare function fixRelativeUrls(ast: postcss.Root, mix: RefedMixin, targetMeta: StylableMeta): void; //# sourceMappingURL=stylable-assets.d.ts.map