import TypeInterface from '../../common/interface/TypeInterface'; interface AttributesInterface { background_color: string; hover_color: string; text_color: string; } export default interface InputInterface extends TypeInterface { } export {};