// @filename: test1.d.ts export interface T

{ a: P; } // @filename: test2.d.ts export declare const theme: { a: string } // @filename: test3.ts export const a: import("./test1").T = null as any;