export default fills; declare namespace fills { namespace neutral { const color: string; const backgroundColor: string; } namespace blue { const color_1: string; export { color_1 as color }; const backgroundColor_1: string; export { backgroundColor_1 as backgroundColor }; } namespace red { const color_2: string; export { color_2 as color }; const backgroundColor_2: string; export { backgroundColor_2 as backgroundColor }; } namespace orange { const color_3: string; export { color_3 as color }; const backgroundColor_3: string; export { backgroundColor_3 as backgroundColor }; } namespace yellow { const color_4: string; export { color_4 as color }; const backgroundColor_4: string; export { backgroundColor_4 as backgroundColor }; } namespace green { const color_5: string; export { color_5 as color }; const backgroundColor_5: string; export { backgroundColor_5 as backgroundColor }; } namespace teal { const color_6: string; export { color_6 as color }; const backgroundColor_6: string; export { backgroundColor_6 as backgroundColor }; } namespace purple { const color_7: string; export { color_7 as color }; const backgroundColor_7: string; export { backgroundColor_7 as backgroundColor }; } }