interface PropsType {
    initBodyType?: 'form-data' | 'raw';
    disabled?: boolean;
    onChange?: (vals: any) => void;
}
export declare const BodyType: ({ initBodyType, disabled, onChange }: PropsType) => JSX.Element;
export {};
