/** __vue_virtual_code_placeholder */
import { StyleValue } from "vue";
export interface ShadeProps {
    visible: boolean | string;
    opacity: string;
    index: number | Function;
    teleport: string;
    teleportDisabled: boolean;
    shadeStyle?: StyleValue;
}
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<ShadeProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "shadeClick"[], "shadeClick", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ShadeProps>>> & {
    onShadeClick?: ((...args: any[]) => any) | undefined;
}, {}, {}>;
export default _default;
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
type __VLS_TypePropsToRuntimeProps<T> = {
    [K in keyof T]-?: {} extends Pick<T, K> ? {
        type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
    } : {
        type: import('vue').PropType<T[K]>;
        required: true;
    };
};
