/** * @internal */ type _AssetTheme = { dark: string; light: string; }; /** * @internal */ type _AssetType = { 'create-new': _AssetTheme; 'no-result': _AssetTheme; 'no-permission': _AssetTheme; 'something-missing': _AssetTheme; 'something-wrong': _AssetTheme; }; /** * @internal */ export type _AssetMap = { chart: _AssetType; document: _AssetType; generic: _AssetType; query: _AssetType; table: _AssetType; }; export {};