interface AssetLike { type?: string; isLoaded?: boolean; text: string; parseTree?: { walkRules?(cb: (rule: any) => void): void; }; } interface RelationLike { type: string; to: AssetLike; media?: string; } interface AssetGraphLike { findRelations(query: Record): RelationLike[]; } interface StylesheetWithPredicates { asset: AssetLike; text: string; predicates: Record; } declare function gatherStylesheetsWithPredicates(assetGraph: AssetGraphLike, htmlAsset: AssetLike, relationIndex?: Map | null): StylesheetWithPredicates[]; export = gatherStylesheetsWithPredicates; //# sourceMappingURL=gatherStylesheetsWithPredicates.d.ts.map