export declare class ShopController {
    config(): {
        currency: string;
        requiresPhoneVerification: boolean;
        deliveryFlatPaisa: number;
        freeDeliveryOverPaisa: number;
        methods: ({
            id: string;
            label: string;
            hint: string;
            needsProof: boolean;
            details: null;
            instructions: string;
        } | {
            id: string;
            label: string;
            hint: string;
            needsProof: boolean;
            details: {
                label: string;
                value: string;
            }[] | null;
            instructions: null;
        })[];
        proofNote: string;
        whatsapp: string | null;
    };
}
