/** * @license * Copyright Google LLC * SPDX-License-Identifier: Apache-2.0 */ interface TestCase { name: string; css: string; } /** Test cases for the round-trip tests. */ export declare const ROUND_TRIP_TEST_CASES: TestCase[]; export {};