import React from 'react';
type PageProps = {
    title: string;
    wsdl?: string;
    request?: string;
    description?: string;
};
type SoapDocsProps = {
    pageProps: PageProps;
};
declare const Template: React.FC<SoapDocsProps>;
export default Template;
