export declare const customer: any; export declare const commands: { [x: string]: { params: any; body: any; } | { params: any; body?: undefined; }; }; export declare const actions: { [x: string]: { params: any; query?: undefined; } | { params: any; query: any; }; };