import { ExtractPropTypes, PropType } from 'vue'; export type HttpGetActionFieldKey = 'scheme' | 'port' | 'host' | 'path' | 'ports'; export declare const httpGetActionProps: { fieldPrefix: { type: StringConstructor; default: string; }; fields: { type: PropType>>; default: () => {}; }; }; export type HttpGetActionProps = ExtractPropTypes;