interface ComponentInterface extends BaseComponent {
  data: DataInterface,
  methods: MethodsInterface
}

interface DataInterface {

}

interface MethodsInterface {

}

const Options: ComponentInterface = {
  data: {},
  methods: {}
}

Component(Options)

export {}
