declare class CustomerRemoveInput {
    userId: string;
}
/**
 * Remove customer
 */
declare const remove: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, CustomerRemoveInput, Record<string, any>, {
    isRemoved: boolean;
}>;
export { remove as default };
