export interface IAttribute {
  key: string;
  value: string;
}

export default IAttribute;
