import type { EnvVariable } from '@scalar/api-client/store';
import type { Environment } from '@scalar/oas-utils/entities/environment';
import type { Workspace } from '@scalar/oas-utils/entities/workspace';
import { type MaybeRefOrGetter } from 'vue';
/**
 * Vue class prop type
 *
 * Vue seems to just use any behind the scenes
 *
 * @see https://vuejs.org/guide/essentials/class-and-style.html#class-and-style-bindings
 */
export type VueClassProp = MaybeRefOrGetter<string | Record<string, boolean> | (string | Record<string, boolean>)[] | false>;
type __VLS_Props = {
    type?: string;
    containerClass?: VueClassProp;
    required?: boolean;
    modelValue: string | number;
    readOnly?: boolean;
    environment: Environment;
    envVariables: EnvVariable[];
    workspace: Workspace;
};
declare var __VLS_13: {}, __VLS_15: {};
type __VLS_Slots = {} & {
    default?: (props: typeof __VLS_13) => any;
} & {
    icon?: (props: typeof __VLS_15) => any;
};
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
    "update:modelValue": (v: string) => any;
    inputFocus: () => any;
    inputBlur: () => any;
    selectVariable: (value: string) => any;
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
    "onUpdate:modelValue"?: ((v: string) => any) | undefined;
    onInputFocus?: (() => any) | undefined;
    onInputBlur?: (() => any) | undefined;
    onSelectVariable?: ((value: string) => any) | undefined;
}>, {
    readOnly: boolean;
    required: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
//# sourceMappingURL=RequestAuthDataTableInput.vue.d.ts.map