/** * Provider-neutral CSS resource admission limits. * * These values are shared by source discovery, request-time compilation, and * build optimization. Keeping them below those layers prevents Server and HTML * code from importing Build solely to agree on resource policy. */ export declare const MAX_CSS_FILES = 10000; export declare const MAX_CSS_DIRECTORY_DEPTH = 64; export declare const MAX_CSS_DIRECTORY_ENTRIES = 100000; export declare const MAX_CSS_FILE_BYTES: number; export declare const MAX_CSS_TOTAL_BYTES: number; export declare const MAX_CSS_OUTPUT_FILE_BYTES: number; /** Shared compiler/purger ceiling for retained selector candidate evidence. */ export declare const MAX_CSS_SELECTOR_TOKENS = 100000; /** Maximum characters in one class/selector candidate token. */ export declare const MAX_CSS_SELECTOR_TOKEN_CHARACTERS = 1024; /** Aggregate UTF-8 evidence retained across normalized selector candidates. */ export declare const MAX_CSS_SELECTOR_EVIDENCE_BYTES: number; //# sourceMappingURL=css.d.ts.map