declare module '*.svg' { type Props = Record; export default class { constructor(options: { target: Element; anchor?: Element; props?: Props; hydrate?: boolean; intro?: boolean; }); $set(props: Props): void; $on(event: string, callback: (event: CustomEvent) => void): () => void; $destroy(): void; [accessor: string]: any; } } declare module "*.css" { const T: string; export default T; }