import { ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
export declare class ShopifyPartnerApi implements ICredentialType {
    name: string;
    displayName: string;
    documentationUrl: string;
    properties: INodeProperties[];
    authenticate: {
        type: "generic";
        properties: {
            headers: {
                'X-Shopify-Access-Token': string;
                'Content-Type': string;
                Accept: string;
            };
        };
    };
    test: ICredentialTestRequest;
}
export default ShopifyPartnerApi;
