import type { ExtractPropTypes } from 'vue'; import type UriInput from './uri-input.vue'; export declare const httpUriOptions: { label: string; value: string; }[]; export declare const getHttpMethodUri: (uri: string | null) => { prefix: string; url: string; }; export declare const uriInputProps: { readonly value: import("ll-plus/es/utils").EpPropFinalized; readonly suffix: import("ll-plus/es/utils").EpPropFinalized; readonly addonAfter: import("ll-plus/es/utils").EpPropFinalized; readonly disabled: import("ll-plus/es/utils").EpPropFinalized; readonly placeholder: import("ll-plus/es/utils").EpPropFinalized; readonly showCopy: import("ll-plus/es/utils").EpPropFinalized; }; export declare const uriInputEmits: { 'update:value': (value: string) => boolean; change: (value: string) => boolean; }; export type UriInputProps = ExtractPropTypes; export type UriInputEmits = typeof uriInputEmits; export type UriInputInstance = InstanceType;