import { ScopedSlots } from "../../UxCoreTypings";
import Vue from "vue";
export interface IVSelectScopedSlots {
    item?: {
        parent: Vue;
        item: any;
        tile: any;
    };
    selection?: {
        parent: Vue;
        item: any;
        index: number;
        selected: boolean;
        disabled: boolean;
    };
}
export interface IVSelect {
    scopedSlots?: ScopedSlots<IVSelectScopedSlots>;
}
