import Vue from "vue";
import * as tsx from "vue-tsx-support";
export interface VueWebComponentSlotProperties {
    providedBy: Vue;
    wcSlot?: string;
}
export declare class VueWebComponentSlot extends tsx.Component<VueWebComponentSlotProperties> {
    providedBy: any;
    wcSlot: string;
    private renderDefault;
    mounted(): void;
    render(): any;
}
