declare namespace _default { export { baseStyle }; export { appearances }; export { sizes }; } export default _default; declare namespace baseStyle { const color: string; } declare const appearances: {}; declare namespace sizes { namespace small { const width: number; const height: number; } namespace medium { const width_1: number; export { width_1 as width }; const height_1: number; export { height_1 as height }; } namespace large { const width_2: number; export { width_2 as width }; const height_2: number; export { height_2 as height }; } }