export declare const policies: {
    CartController: {
        create: {
            'POST': string[];
            'PUT': string[];
        };
        checkout: {
            'POST': string[];
            'PUT': string[];
        };
    };
    CustomerController: {
        create: {
            'POST': string[];
            'PUT': string[];
        };
    };
};
