import { Vue } from 'vue-property-decorator'; import type { SortOption } from '@/utils/OkendoApi'; export default class QuestionsHeader extends Vue { initialSortOption: SortOption; sortDisabled: boolean; productId: string; selectedSortOption: SortOption; created(): void; onSortChange(sortOption: SortOption): void; }